Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 690 Bytes

README.md

File metadata and controls

23 lines (20 loc) · 690 Bytes

kawaba

https://ma-kawaba.github.io/kawaba

Creating Translations

Single word:

<p>
  The quick brown <span class=tlt>{fox|xof}</span> jumped over the lazy dog
<p>

This example would create a paragraph where the translation for "fox" would be shown in the hovering box as "xof"

Multiple words:

<p>
  <span class="tlt">
    {Hello |olleh} {world!|dlrow}!
  </span>
<p>

This example would create a paragraph where the translation for "Hello world!" would be shown as two different words in seperate hovering boxes as "olleh" and "dlrow" respectively.

To add spacing notice that I placed a space after Hello inside of the brackets, this is where the space goes :)