🗒️

This is example post!

avatar
MineArchive
A short description of my very first post using Nuxt Content collections.

Welcome to the Example Post

This is the main body content written in Markdown. The data above (title, description, etc.) is called frontmatter, which is parsed by @nuxt/content.

Features of Markdown

You can use standard Markdown features here:
  • Bold text with **bold text**
  • Italic text with *italic text*
  • Links to external sites.
You can use <br/> to new line.
But if it in code block. It won't be

Code Blocks

You can even include code snippets:
test.vuevue
<template>
    <div>
        This content is rendered by the ContentDoc component!
    </div>
</template>
c.cc
#include <stdio.h>

int main() {
    printf("Hello world!\n");
}
example.textex
\begin{}

\end{}
Main.javajava
public static void main(String[] args) {
    System.out.println("Hello world!");
}

Katex Example

この方程式 E=mc2E = mc^2 はアインシュタインの有名な式です。
b±b24ac2a\frac{-b \pm \sqrt{b^2 - 4ac}}{2a}
もちろん既存のmarkdownと同じように式と式の間でもこのように数式を記述することができます。
f(x)=x2+2x+1=(x+1)2\begin{align} f(x) &= x^2 + 2x + 1 \\ &= (x+1)^2 \end{align}f(n)={0(n=0)1(n=1)f(n1)+f(n2)(n2)f(n) = \begin{cases} 0 & (n = 0) \\ 1 & (n = 1) \\ f(n - 1) + f(n - 2) & (n \geq 2) \end{cases}Fn=1F_n = 1[1234]\begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix}