-
Notifications
You must be signed in to change notification settings - Fork 0
Custom quotes
Andreas Behringer edited this page Oct 24, 2024
·
2 revisions
You can define your own custom quote characters by calling:
$[quotes](»,«,›,‹)
quotes
is the indicator for spell that you wish to define your custom quote characters.
»,«,›,‹
are four special HTML characters seperated by ,
.
The order is always:
- double quote left
- double quote right
- single quote left
- single quote right
You can use other characters and also try UTF-8 characters.
The default characters are simple double and single quotes like "
and '
.
To use the custom quotes there are four seperate commands available. The goal is to be as easy to read in unencoded mode like all Markdown.
Put a text in %"double quotes"% or %'single quotes'%.
results in the following, if you have defined custome quote chars as shown above:
Put a text in »double quotes« or ›single quotes‹.
As a rule of thumb: The quote char is always towards the quoted text, not outside.