Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
wiki:syntax [2022/11/29 06:41] – created ric | wiki:syntax [2022/11/30 16:29] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | # Dokuwiki Specific Controls | + | # Wiki Syntax |
The pages are set to render everything inside as markdown by default using the CommonMark plugin. | The pages are set to render everything inside as markdown by default using the CommonMark plugin. | ||
Line 14: | Line 14: | ||
~~~ | ~~~ | ||
- | ### Fixme | + | Markdown is a more modern syntax currently used on github and also the same one used on the discourse mailing list website we're using. |
+ | |||
+ | * https:// | ||
+ | * https:// | ||
+ | * https:// | ||
+ | |||
+ | ## New lines | ||
+ | |||
+ | With markdown by default if you place one line of text directly below another one. | ||
+ | Then both will be joined together without a newline but with a space such as this paragraph. | ||
+ | |||
+ | To force a newline add a double space at the end of the line ` ` | ||
+ | This will force the newline at the end of a line within a paragraph | ||
+ | |||
+ | ## Links | ||
+ | |||
+ | The normal syntax for markdown links is | ||
+ | ``` | ||
+ | [Plugins](.: | ||
+ | ``` | ||
+ | We can also use the dokuwiki syntax for links as well (which I admit is back to front compared to the above) | ||
+ | ``` | ||
+ | [[Plugins|.: | ||
+ | ``` | ||
+ | |||
+ | ## Fixme | ||
One of the inbuilt controls that still works without any code fences is the Fixme label. | One of the inbuilt controls that still works without any code fences is the Fixme label. | ||
If we write the text `FIXME` in all capitals the end result is FIXME | If we write the text `FIXME` in all capitals the end result is FIXME | ||
- | + | ## Plugins | |
- | ### Plugins | + | |
For the rest see the [[.: | For the rest see the [[.: | ||