1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-05 11:43:16 +00:00
TiddlyWiki5/editions/tw5.com/tiddlers/wikitext/Formatting in WikiText.tid
Mateusz Wilczek 55124b4ee6
Improve documentation of WikiText formatting (#7272)
* Improve 'Formatting in WikiText.tid'

Add highlight formatting example.
Simplify code formatting example to be single line without nested list.
Improve bold, italic, and underscore formatting examples to be consistent with others.

* Improve 'Styles and Classes in WikiText.tid'

Add more examples, including the default highlight styling when no style or class is defined, as introduced in #6877
2023-02-17 19:14:21 +01:00

20 lines
1.1 KiB
Plaintext

caption: Formatting
created: 20131205155959399
modified: 20220513120211686
tags: WikiText
title: Formatting in WikiText
type: text/vnd.tiddlywiki
Available character formatting includes:
* <code>&#96;code&#96;</code> for `code` (<<.icon $:/core/images/mono-line>>), alternatively <code>&#96;&#96;double backticks allow &#96;embedded&#96; single backticks&#96;&#96;</code><br><br>
* `''bold''` for ''bold'' text (<<.icon $:/core/images/bold>>)<br><br>
* `//italic//` for //italic// text (<<.icon $:/core/images/italic>>)<br><br>
* `__underscore__` for __underscored__ text (<<.icon $:/core/images/underline>>)<br><br>
* `^^superscript^^` for ^^superscripted^^ text (<<.icon $:/core/images/superscript>>)<br><br>
* `,,subscript,,` for ,,subscripted,, text (<<.icon $:/core/images/subscript>>)<br><br>
* `~~strikethrough~~` for ~~strikethrough~~ text (<<.icon $:/core/images/strikethrough>>)<br><br>
* `@@highlight@@` for @@highlighted@@ text (no editor toolbar button), see [[Styles and Classes in WikiText]] for more formatting options
See also: [[Code Blocks in WikiText]]