Difference between revisions of "Hypertext Syntax"
Jump to navigation
Jump to search
Line 2: | Line 2: | ||
The essential markdown syntax for MediaWiki are: | The essential markdown syntax for MediaWiki are: | ||
# [[Hypertext_Syntax#Hierarchical_Markdown|Hierarchical Markdown]] | # [[Hypertext_Syntax#Hierarchical_Markdown|Hierarchical Markdown]] | ||
# | # [[Hypertext_Syntax#Hyperlink to other pages|Hyperlink]] | ||
# | # [[Hypertext_Syntax#Transclusion from other pages|Transclusion]] | ||
They are essential because they formally define the structure of a hyperlinked document space. | They are essential because they formally define the structure of a hyperlinked document space. | ||
==Hierarchical Markdown== | ==Hierarchical Markdown== |
Revision as of 01:30, 23 March 2022
Absolute Essential
The essential markdown syntax for MediaWiki are:
They are essential because they formally define the structure of a hyperlinked document space.
Hierarchical Markdown
Use a number of balanced equal signs (=) to format the level of section titles. Larger number of equal signs indicates lower level.
Input Content | Rendered Result |
---|---|
=Level1= |
Level1 |
==Level2== |
Level2 |
===Level3=== |
Level3 |
====Level4==== |
Level4 |
=====Level5===== |
Level5 |
Hyperlink to other pages
Sample Input | Rendered Result |
---|---|
[[Main Page]] | Main Page |
[http://wikimedia.org wikimedia website] | wikimedia website |
[[Main Page|This is called the Piped Link]] | This is called the Piped Link |