Published at February 10, 2020 · Last Modified at September 24, 2021 · 2 min read · Tags: hugo
It is My first Hugo post. I decided to work with Hugo after I had experience with word press. I write documents in Markdown format and use GitHub to manage my files, tags, and categories instead of using MySQL database is much easier to manage and deploy. To learn how to create such a blog in Hugo, you can try this blog.
Table Of Contents
Refer to table of content for more information on creating a Hugo post with a table of contents.
diagram
Learn how to plot the kinds of figures. See also hugo shortcodes.
-
classDiagram Class01 <|-- AveryLongClass : Cool Class03 *-- Class04 Class05 o-- Class06 Class07 .. Class08 Class09 --> C2 : Where am i? Class09 --* C3 Class09 --|> Class07 Class07 : equals() Class07 : Object[] elementData Class01 : size() Class01 : int chimp Class01 : int gorilla Class08 <--> C2: Cool label
mathematical equations
See here for more info on how to integrate latex mathematical equation syntax in HTML pages. The following:
{{< katex >}}
\int_{a}^{b} x^2 dx
{{< /katex >}}
will render to: $$ \int_{a}^{b} x^2 dx $$
The hugo shortcode for katext is here, also see here for more information about latex sysntax.