Code & formatting log: Difference between revisions
Appearance
Created page with "== mixed numbered and bulleted list == <ol><li>Name A</li> <ul><li>level 1<li> <li>level 2</li> </ul> <li>Name B.</li> <ul><li>level 1<li> <li>level 2</li> </ul> </ol>" |
|||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
== Mermaid flow chart code == | |||
<pre> | |||
{{#mermaid:flowchart TB | |||
AB[TITLE]-->BC[TITLE] | |||
subgraph " " | |||
AB-->CD[TITLE] | |||
end | |||
AB[TITLE]--text here-->BC[TITLE] | |||
AB[TITLE]-.-dotted line -.->BC[TITLE] << dotted line without text | |||
AB[TITLE] -. dotted line w tesxt .-> BC[TITLE] | |||
}} | |||
does not support | |||
" " quotations | |||
; semicolons | |||
markdown '' italics or ''' bold | |||
does support | |||
' ' single quotations | |||
<br> | |||
<b> | |||
<i> | |||
</pre> | |||
== mixed numbered and bulleted list == | == mixed numbered and bulleted list == | ||
Line 10: | Line 40: | ||
</ul> | </ul> | ||
</ol> | </ol> | ||
== search box code == | |||
from https://www.mediawiki.org/wiki/Extension:InputBox | |||
<inputbox> | |||
type=search | |||
namespaces=File | |||
</inputbox> |
Latest revision as of 13:57, 30 December 2024
Mermaid flow chart code
{{#mermaid:flowchart TB AB[TITLE]-->BC[TITLE] subgraph " " AB-->CD[TITLE] end AB[TITLE]--text here-->BC[TITLE] AB[TITLE]-.-dotted line -.->BC[TITLE] << dotted line without text AB[TITLE] -. dotted line w tesxt .-> BC[TITLE] }} does not support " " quotations ; semicolons markdown '' italics or ''' bold does support ' ' single quotations <br> <b> <i>
mixed numbered and bulleted list
- Name A
- level 1
- level 2
- Name B.
- level 1
- level 2