Skip to main content

First Blog Post

· One min read
Blog Author
Blog Maintainer

This is the first blog post on this site. You can write your blog posts in markdown format.

Markdown Features

Docusaurus supports Markdown and a few additional features.

Code Blocks

function HelloWorld() {
return (
<h1>Hello, World!</h1>
);
}

Admonitions

My tip

Use this awesome feature option

Take care

This action is dangerous

MDX

You can write JSX and use React components within your Markdown thanks to MDX.

Docusaurus green and Facebook blue are my favorite colors.

Welcome to the Blog

· One min read
Blog Author
Blog Maintainer

Welcome to the blog section of this site! This blog has been created using Docusaurus 2.

This is a sample blog post to demonstrate the blog functionality. You can write your blog posts in markdown format, and they will be automatically converted to HTML.

Features

  • Markdown Support: Write your blog posts in markdown format
  • Tags: Categorize your blog posts with tags
  • Authors: Add author information to your blog posts
  • Reading Time: Automatically calculate reading time for your blog posts
  • Pagination: Navigate through multiple blog posts

Getting Started

To create a new blog post, add a new markdown file to the blog directory with the following format:

YYYY-MM-DD-title.md

For example:

2023-11-15-welcome.md

Each blog post should have a frontmatter section at the top of the file with metadata about the post:

---
slug: welcome
title: Welcome to the Blog
authors: [blogauthor]
tags: [hello, docusaurus]
---

After the frontmatter, you can write your blog post content in markdown format.

Happy blogging!