mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-09 11:29:58 +00:00
22 lines
467 B
Plaintext
22 lines
467 B
Plaintext
|
created: 20131205160047557
|
||
|
modified: 20131205160108132
|
||
|
tags: wikitext
|
||
|
title: Code Blocks in WikiText
|
||
|
type: text/vnd.tiddlywiki
|
||
|
|
||
|
You can use triple backticks <code>```</code> to mark code blocks:
|
||
|
|
||
|
<pre>
|
||
|
```
|
||
|
This will be monospaced
|
||
|
```
|
||
|
</pre>
|
||
|
|
||
|
The three backticks need to be at the start of the line and immediately followed by a newline, otherwise they won't be interpreted correctly.
|
||
|
|
||
|
Renders as:
|
||
|
|
||
|
```
|
||
|
This will be monospaced
|
||
|
```
|