Reputation: 8788
I'd like to highlight one or two words in a <HTML></HTML>
section in a dokuwiki (2014-05-05 "Ponder Stibbons") page like I'd do outside of the section with ''one or two words''
or with apostrophe in SE markdown. How can I achieve that? Example (embedded HTML
option has to be enabled in configuration):
====== Title ======
<HTML>
<ul>
<li>Magic should happen ''here'', except not with '' because it isn't recognized</li>
</ul>
</HTML>
The following doesn't suit my needs
<tt>one two</tt>
simply doesn't look the sameBesides this I don't have any ideas...
Upvotes: 0
Views: 238
Reputation: 1176
Try enclosing the string in " tag like "key" i.e. " tag appended with semicolon
May be misunderstood your question , now more clear Try something like this if it helps by enclosing in code tags as shown in : https://www.dokuwiki.org/faq:lists
Magic should happen 'here', expect not with because it isn't recognized
Also,check out the following link :
https://www.dokuwiki.org/wiki:syntax
Upvotes: 1