mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-04 00:56:17 +00:00
534f5e7c13
This reverts commit 7436fc7374
.
31 lines
992 B
Plaintext
Executable File
31 lines
992 B
Plaintext
Executable File
title: $:/plugins/tiddlywiki/markdown/usage
|
|
|
|
! Markdown Dialects
|
|
|
|
By default the markdown parser recognises the original dialect of Markdown [[as described by John Gruber|http://daringfireball.net/projects/markdown/]]. An extended dialect called "Maruku" is also included that provides table support and other advanced features. The syntax extensions are modelled on those of [[PHP Markdown Extra|https://michelf.ca/projects/php-markdown/extra/]].
|
|
|
|
The configuration tiddler [[$:/config/markdown/dialect]] determines which dialect is used:
|
|
|
|
|!Dialect |!Description |
|
|
|Gruber |Standard Markdown |
|
|
|Maruku |Extended Maruku Markdown |
|
|
|
|
|
|
! Creating ~WikiLinks
|
|
|
|
Create wiki links with the usual Markdown link syntax targeting `#` and the target tiddler title:
|
|
|
|
```
|
|
[link text](#TiddlerTitle)
|
|
```
|
|
|
|
! Images
|
|
|
|
Markdown image syntax can be used to reference images by tiddler title or an external URI. For example:
|
|
|
|
```
|
|
![alt text](/path/to/img.jpg "Title")
|
|
|
|
![alt text](Motovun Jack.jpg "Title")
|
|
```
|