Skip to content

Latest commit

 

History

History
73 lines (48 loc) · 1.05 KB

section1.md

File metadata and controls

73 lines (48 loc) · 1.05 KB
pagetitle
page title for section 1
[Home](index.html) / Section 1

Section 1

This is the first paragraph.

This is the 2nd paragraph.

Second level (h2) title

You can write italic and bold like this: Italic, bold.

An example list:

  • item 1
  • item 2
  • item 3

Here is a numbered list:

  1. item 1
  2. item 2
  3. item 3

You can write code by enclosing them with three-tilde lines:

int main(void) {
    print "Hello world!";
    return 0;
}

Syntax highlighting works for many languages (check pandoc doc):

int main(void) {
    print "Hello world!";
    return 0;
}

An h3 header

An example link to a website and to a local page.

What about tables?

Here is an example

col1 col2


1 X
2 Y 3 Z

Comprehensive guide to Parndoc's markdown is here.