Skip to content

Formatting

You can add links to other Catalyst Guide pages or to websites using:

You can add links to images as well!

Website links must have the Scheme and Subdomain to work!

[Click to visit Example!](https://www.example.com/)

[How to Contribute!](../README.md)

Highlighting Changes

Yes, this is an image. Using code blocks would still render formatting, so this is my workaround. Yes, this is an image. Using code blocks would still render formatting, so this is my workaround.

Text can be deleted and replacement text added. This can also be combined into onea single operation. Highlighting is also possible and comments can be added inline.

Formatting can also be applied to blocks by putting the opening and closing tags on separate lines and adding new lines between the tags and the content.


Highlighting Text

You can highlight text with a simple syntax that's is more convient than usual HTML tags.

==This was marked (highlight)==

^^This was inserted (underline)^^

~~This was deleted (strikethrough)~~

This was marked (highlight)

This was inserted (underline)

This was deleted (strikethrough)


Sub and Superscripts

Text can be subscripted (below) or superscripted (above) using simple syntax.

H~2~O

2^X^

H2O

2X


Adding keyboard keys

Using the below syntax, you can render keyboard keys and mouse buttons.

You can see shortcodes at Python Markdown Extensions

++ctrl+alt+del++

++print-screen+eject+caps-lock++

++left-button+middle-button+right-button++

Ctrl+Alt+Del

Print Screen+Eject+Caps Lock

Left Button+Middle Button+Right Button


Tool Tips

You can add tool tips to text that can contain links if you'd like!

[Hover me](https://example.com "I'm a tooltip!")

You can also add tooltips to Icons!

:material-information-outline:{ title="Important information" }


Adding Abbreviations

Abbreviations can be defined by using a special syntax, starting with a * and immediately followed by the term or acronym to be associated in square brackets.

Text with abbreviations
The HTML specification is maintained by the W3C.

*[HTML]: Hyper Text Markup Language
*[W3C]: World Wide Web Consortium

The HTML specification is maintained by the W3C.


Adding a Glossary

You can add a glossary or footnotes to text that will be displayed at the bottom of the current page and is clickable in both directions.

Nuclear fission[^1] is a reaction in which the nucleus[^2] of an atom splits into two or more smaller nuclei.

[^1]:
    This term will be added to the bottom of the current page and is clickable.
[^2]:
    This is also some term at the bottom of the page.

Nuclear fission1 is a reaction in which the nucleus2 of an atom splits into two or more smaller nuclei.


Adding Hidden Comments

You can add comments for other contributors that will be hidden on the live Catalyst site.

<!--- This comment will not be rendered in the final HTML file. --->

<!--- 
This multiline comment will also 
not be rendered in the final HTML file. 
--->

The two comment methods will show in View Source, if you don't want that you can use this format to have truly hidden comments.

[//]: # (This comment will not show in the final HTML or "View Source")

  1. This term will be added to the bottom of the current page and is clickable. 

  2. This is also some term at the bottom of the page.