title: $:/plugins/tiddlywiki/markdown/config ! Plugin Configuration

~WikiText Pragma

The value of [[renderWikiTextPragma|$:/config/markdown/renderWikiTextPragma]] has been carefully tuned to properly integrate markdown with ~TiddlyWiki. Changing this setting may produce unexpected results, but the inclusion of the following parser rules should be fine: ; image : embed images using ~TiddlyWiki's image syntax:

``` [img[An explanatory tooltip|TiddlerTitle]] [img width=23 class="tc-image" [https://tiddlywiki.com/fractalveg.jpg]] ```

; prettylink : create links the ~TiddlyWiki way:

``` [[TiddlerTitle]] [[Displayed Link Title|Tiddler Title]] [[TW5|https://tiddlywiki.com/]] ```

; prettyextlink : create external links using the following syntax:

``` [ext[Open file|index.html]] [ext[Open file|../README.md]] ```

; wikilink : auto-link ~CamelCase titles ; syslink : auto-link system tiddlers

Typographical Replacements

When [[typographer|$:/config/markdown/typographer]] is enabled, markdown-it will provide these typographical replacements: ``` (c) (C) → © (tm) (TM) → ™ (r) (R) → ® +- → ± ... → … ?.... → ?.. !.... → !.. ????? → ??? !!!!! → !!! ,, → , -- → – --- → — ```