Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| wiki:custom_syntax [2025-09-30 16:01 UTC] – [Keyboard] formatting thhsh | wiki:custom_syntax [2025-10-30 16:23 UTC] (current) – Add Comments plugin notes thhsh | ||
|---|---|---|---|
| Line 57: | Line 57: | ||
| See the [[https:// | See the [[https:// | ||
| + | ===== 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 ==== | ||
| + | < | ||
| + | You can add /* hidden */ text like this. | ||
| + | </ | ||
| + | which becomes: | ||
| + | < | ||
| + | You can add text like this. | ||
| + | </ | ||
| + | |||
| + | ==== Multiple lines ==== | ||
| + | < | ||
| + | /** | ||
| + | * This | ||
| + | * | ||
| + | * is a | ||
| + | * longer note | ||
| + | * | ||
| + | * | ||
| + | * with some blank lines | ||
| + | */ | ||
| + | </ | ||
| + | |||
| + | FIXME Make these examples gists? Or leave as-is? | ||