Skip to main content
Module

x/blog/testdata/posts/fifth.md

Minimal boilerplate blogging.
Latest
File

title: Fifth post author: CUSTOM AUTHOR NAME publish_date: 2023-02-17 abstract: This is the fifth post showcasing math rendering render_math: true

Math rendering

This post showcases math rendering using KaTeX in deno-gfm

Inline math

Inline math is rendered using $ delimiters, e.g. $\sqrt{3x-1}+(1+x)^2$ renders as $\sqrt{3x-1}+(1+x)^2$ .

And the letter i is rendered as $i$.

Block math

Block math is rendered using $$ delimiters, e.g. $$\sqrt{3x-1}+(1+x)^2$$ renders as

$$ \sqrt{3x-1}+(1+x)^2 $$

Math in code blocks

Math can be rendered in code blocks by using the math language tag, e.g. math \sqrt{3x-1}+(1+x)^2 renders as

\sqrt{3x-1}+(1+x)^2