Opitx - Documentation

3. Markdown Stylesheet


The following information is the raw text provided in the start page of the application. Due to this being site being in HTML, expect some style differences and see the repository for a more accurate rendering.


Syntax Guide This is a brief introduction to Markdown. For a more complete description, check out GitHub's Mastering MarkDown Guide.


Italics
Markdown: This is a text with _Italics_ which can be rendered *in different ways*

Result:
This is a text with Italics which can be rendered in different ways.


Bold
Markdown: **Bold** is almost the same, it just uses __two asterisks__ or __underscores__

Result:
Markdown: Bold is almost the same, it just uses two asterisks or underscores.


Headers
Markdown:
# Markdown
## Uses
### Similar
#### Headers
##### To
###### HTML

Result:

Markdown

Uses

Similar

Headers

To
HTML

Unordered Lists
Markdown:
- List Item
- List Item
- Sub Item
- Sub Item

Result:

  • List Item
  • List Item
    • Sub Item
    • Sub Item

Ordered Lists
Markdown:
1. Ordered
1. Lists
1. Are
1. Easy
1. Too

Result:

  1. Ordered
  2. Lists
    1. Are
    2. Easy
    3. Too
Links
Markdown: [Big Brother](https://google.com)

Result: Big Brother

Blockquotes
Markdown:
> I was so tired of loosing my work, I actually made my own editor.
> Sure it took a while, but less time than redoing even more work.
I was so tired of loosing my work, I actually made my own editor.
Sure it took a while, but less time than redoing even more work.