Help:TootCat/HTML/formatting/Markdown: Difference between revisions

From MeW
Jump to navigation Jump to search
Created page with "{{fmt/title|formatting posts with Markdown}} Remember that anything that works with the HTML option will also work with the Markdown option! <syntaxhighlight lang=md>..."
 
No edit summary
Line 10: Line 10:
_underline_
_underline_
[link text](URL) - must be full URL with protocol
[link text](URL) - must be full URL with protocol
^superscript -- like: E=MC^2
I don't know how to turn it off without a space.
You can even do supersuperscript: Normal^super^hyper makes "hyper" look like a superscript on "super" -- both higher and smaller


======
======

Revision as of 21:32, 28 May 2023

formatting posts with Markdown

Remember that anything that works with the HTML option will also work with the Markdown option!

=====================
Character formatting:
=====================
**bold**
*italic*
~~strike~~
_underline_
[link text](URL) - must be full URL with protocol
^superscript -- like: E=MC^2
 I don't know how to turn it off without a space.
 You can even do supersuperscript: Normal^super^hyper makes "hyper" look like a superscript on "super" -- both higher and smaller

======
Lists:
======
* bullet item one
* bullet item two
  * sub-item for item 2 (2 spaces per indent)
* bullet item three

1. numbered list item 1
2. numbered list item 2

============
Fixed-pitch:
============
`inline fixed-pitch text`
```
multiline fixed-pitch text
```

============
Text blocks:
============
# Header 1
## Header 2
### Header 3

> quote-indented text

Further Reading on Markdown

Note that TootCat only supports a small subset of Markdown.