Files
aether/exampleSite/content/post/aether-features.md

3.1 KiB

title, date, description, categories, featuredImage, dropCap, displayInMenu, displayInList, draft
title date description categories featuredImage dropCap displayInMenu displayInList draft
Aether Features 2018-12-19T10:35:35-05:00 Hugo combined with the Aether theme turns easy to write markdown into powerful web pages. KaTeX, Highlight.js, and Hugo provides the ability to create mathmatical symobols, equations, highlighted code, tables, lists, and much more.
Features
img/mdd-iphone.jpg true false true false

Hugo combined with the Aether theme turns easy to write markdown into powerful web pages. KaTeX, Highlight.js, and Hugo provides the ability to create mathmatical symobols, equations, highlighted code, tables, lists, and much more.

For each feature below, the first line is the markdown and the second line is the result after Hugo, KaTeX, and Highlight.js process the markdown. You can find many more features in the Hugo documentation.

LaTeX style math typsetting with KaTeX

{{</* raw */>}}
\[u(t) = K_p e(t) + K_i \int_{0}^{t} e(\tau) d\tau + K_d \frac{de(t)}{dt} \]
{{</* /raw */>}}

{{< raw >}} [u(t) = K_p e(t) + K_i \int_{0}^{t} e(\tau) d\tau + K_d \frac{de(t)}{dt} ] {{< /raw >}}

Code (Supports many programming languages and formats)

```javascript
var s = "JavaScript syntax highlighting";
alert(s);
```
var s = "JavaScript syntax highlighting";
alert(s);

Inline code

Here is `var s = "Hello World"` inline code

Here is var s = "Hello World" inline code

Tables

| Tables        | Are           | Cool  |
| ------------- |:-------------:| -----:|
| col 3 is      | right-aligned | $1600 |
| col 2 is      | centered      |   $12 |
| zebra stripes | are neat      |    $1 |
Tables Are Cool
col 3 is right-aligned $1600
col 2 is centered $12
zebra stripes are neat $1

Ordered List

1. Number one
2. Number Two
    1. Indented Number 1
    2. Indented Number 2
  1. Number one
  2. Number Two
    1. Indented Number 1
    2. Indented Number 2

Unordered List

* Get groceries at Harris Teeter before the party
* Get a Spider Man cake
    * Chocolate or marble
    * Whipped cream frosting
* Don't forget to walk the dog before you leave
* Bring lots of plates and silverware so that we don't run out
    * Plastic Dixie brand is fine
  • Get groceries at Harris Teeter before the party
  • Get a Spider Man cake
    • Chocolate or marble
    • Whipped cream frosting
  • Don't forget to walk the dog before you leave
  • Bring lots of plates and silverware so that we don't run out
    • Plastic Dixie brand is fine

Comments

> This is some text that should show up as a comment. Someone may have made this comment but i'm not sure.

This is some text that should show up as a comment. Someone may have made this comment but i'm not sure.

Images

![NYC Skyline](/img/nyc.jpg)

NYC Skyline

[Aether's Github page](https://github.com/josephhutch/aether)

Aether's Github page