Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
wiki:custom_syntax [2025-09-30 16:01 UTC] – [Keyboard] formatting thhshwiki:custom_syntax [2025-10-30 16:23 UTC] (current) – Add Comments plugin notes thhsh
Line 57: Line 57:
 See the [[https://www.dokuwiki.org/plugin:keyboard|keyboard plugin documentation]] for more details. See the [[https://www.dokuwiki.org/plugin:keyboard|keyboard plugin documentation]] for more details.
  
 +===== Comments =====
 +You can add comments to the wiki source (in the editor or when editing via Git) that will not appear in the rendered wiki page.
  
 +==== Single line ====
 +<code>
 +You can add /* hidden */ text like this.
 +</code>
 +which becomes:
 +<code>
 +You can add text like this.
 +</code>
 +
 +==== Multiple lines ====
 +<code>
 +/**
 +* This
 +*
 +* is a
 +* longer note
 +*
 +*
 +* with some blank lines
 +*/
 +</code>
 +
 +FIXME Make these examples gists? Or leave as-is?  --- //thhsh 2025-10-30 16:23 UTC//