Skip to content

puchengy/personal_blog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

My Personal Blog

This is my personal blog hosted using GitHub Pages. Visit the blog at [username.github.io/repository-name].

About

This blog is built using HTML and CSS, hosted directly on GitHub Pages.

Writing New Posts

  1. Create a new markdown file in the posts/ directory with a .md extension.
  2. Add YAML front matter at the top of your markdown file:
    ---
    title: Your Post Title
    date: Month DD, YYYY
    ---
  3. Write your post content in markdown format below the front matter. The content will be automatically converted to HTML using the template when displayed on the website.

Markdown Features Supported

  • Headers (# to ######)
  • Bold and italic text (bold, italic)
  • Lists (ordered and unordered)
  • Links and images
  • Code blocks (fenced with ```)
  • Tables
  • Blockquotes
  • Horizontal rules

Example Post Structure

---
title: My Example Post
date: January 1, 2024
---

# My Example Post

This is a paragraph with **bold** and *italic* text.

## Subheading

- List item 1
- List item 2
  - Nested item

### Code Example

```python
def hello_world():
    print("Hello, World!")

For more information about markdown syntax, visit Markdown Guide.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published