Title of the Blog
Jul 18, 2024ยทยท
2 min read
Harishankar P V
Welcome ๐
Table of Contents
Basics
Types of List:
- Item1
- Item2
- Item3
- Item1
- Item2
- Item3
Links: Create a new site
Section 1
Subsection 1
Subsection 2
Ideation
Hugo Blox supports a Markdown extension for mindmaps.
Simple Mindmap
- Hugo Modules - Hugo Blox - blox-plugins-netlify - blox-plugins-netlify-cms - blox-plugins-reveal
Advanced Mindmap
- Mindmaps - Links - [Hugo Blox Docs](https://docs.hugoblox.com/) - [Discord Community](https://discord.gg/z8wNYzb) - [GitHub](https://github.com/HugoBlox/hugo-blox-builder) - Features - Markdown formatting - **inline** ~~text~~ *styles* - multiline text - `inline code` - ```js console.log('hello'); console.log('code block'); ``` - Math: $x = {-b \pm \sqrt{b^2-4ac} \over 2a}$
Hilighting
Highlight important text with mark
:
Callouts
By wrapping a paragraph in {{% callout note %}} ... {{% /callout %}}
, it will render as an aside.
A Markdown aside is useful for displaying notices, hints, or definitions to your readers.
Warning
Or use the warning
callout type so your readers don’t miss critical details:
A Markdown aside is useful for displaying notices, hints, or definitions to your readers.
Todo lists
- Write math example
- Write diagram example
- Do something else
Video
Quiz
๐ Click to view the solution
You found me ๐
Math
Inline Math
Example for an inline math is this - $\nabla F(\mathbf{x}_{n})$
$$\gamma_{n} = \frac{ \left | \left (\mathbf x_{n} - \mathbf x_{n-1} \right )^T \left [\nabla F (\mathbf x_{n}) - \nabla F (\mathbf x_{n-1}) \right ] \right |}{\left \|\nabla F(\mathbf{x}_{n}) - \nabla F(\mathbf{x}_{n-1}) \right \|^2}$$Multiline math
$$ f(k;p_{0}^{*}) = \begin{cases}p_{0}^{*} & \text{if }k=1, \\ 1-p_{0}^{*} & \text{if }k=0.\end{cases} $$Code
import pandas as pd
data = pd.read_csv("data.csv")
data.head()
Inline Image
Python