First post

test math hugo org

A meaningless post to test ox-hugo and Hugo.

In this test post I cover the following topics shows as a ToC.

Table of Contents

Math #

\[\varphi = 1+\frac{1} {1+\frac{1} {1+\frac{1} {1+\cdots} } }\]

\[ \alpha\beta\gamma \]

gives:

\[ \alpha\beta\gamma \]

Section #

text text

Subsection #

more text

Plantuml #

@startuml
class "Node" as n << type >> {
        typeID
        instanceID
        schema
        roles
}
class Role {
        roleID
        schema
}
"n" *- Role
@enduml

Jsonnet #

{ a:42, b:"string", c:["array"] }
{
   "a": 42,
   "b": "string",
   "c": [
      "array"
   ]
}

C++ #

// Convert to C++ type
T convert<T>(const Configuration& cfg);
// Get object attribute as C++ type
T get<T>(const Configuration& cfg, const std::string& name);
x = "foo"