h1 Heading

h2 Heading

Hello world! Let’s try some Math in \(\LaTeX\)

The roots of a quadratic equation in the form \(a x^2 + b x + c = 0\) are:

\[x = \frac{-b \pm \sqrt{b^2 - 4 a c}}{2a}\]

Horizontal Rules


Emphasis

This is bold text

This is bold text

This is italic text

This is italic text

Strikethrough

Blockquotes

Blockquotes can also be nested…

…by using additional greater-than signs right next to each other…

…or with spaces between arrows.

Lists

Ordered

  1. Lorem ipsum dolor sit amet
  2. Consectetur adipiscing elit
  3. Integer molestie lorem at massa

  4. You can use sequential numbers…
  5. …or keep all the numbers as 1.

Unordered

  • Create a list by starting a line with +, -, or *
  • Sub-lists are made by indenting 2 spaces:
    • Marker character change forces new list start:
      • Ac tristique libero volutpat at
      • Facilisis in pretium nisl aliquet
      • Nulla volutpat aliquam velit
  • Very easy!

Code

Inline code

Indented code

// Some comments
line 1 of code
line 2 of code
line 3 of code

Block code “fences”

Sample text here...

Syntax highlighting in this case C++:

  std::vector<int> a = {2, 4, 6, 8, 10};
  std::cout << "One dimension example" << std::endl;
  // Remember zero based indices in C++
  for (size_t i = 0; i < a.size(); ++i) {
    std::cout << a[i] << " "; // read access via index
    a[i] = 2 * a[i] + 1; // modify via index
  }

Tables

Option Description
data path to data files to supply the data that will be passed into templates.
engine engine to be used for processing templates. Handlebars is the default.
ext extension to be used for dest files.

Table with aligned columns

Right Center
data path to data files to supply the data that will be passed into templates.
engine engine to be used for processing templates. Handlebars is the default.
ext extension to be used for dest files.

Definition lists

Term 1

Definition 1 with lazy continuation.

Term 2 with inline markup

Definition 2

{ some code, part of Definition 2 }

Third paragraph of definition 2.