--- title: 'Markdown Style Guide' pubDate: '2025-06-28' --- This theme does not define more levels of headlines. If needed, you can define them in `src/styles/post.css`. --- ## Paragraph Here's a practical example of a paragraph in Markdown. This text demonstrates how content flows naturally in a blog post. You can use various formatting options like **bold**, _italic_, ~~strikethrough~~, and `code` within your paragraphs. ## Blockquotes > Don't communicate by sharing memory, share memory by communicating.
> — Rob Pike[^1] [^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015. ### Ordered List 1. First item 2. Second item 3. Third item ### Unordered List - Item - Subitem - Subitem ## Task List - [ ] First item - [ ] Second item - [x] Third item ## Image To hide the caption, start it with an underscore `_` or leave the alt text empty. ![HIKARI](./_assets/hikari.jpg) ## Tables | Style | Weight | Other | | -------- | -------- | ------ | | Normal | Regular | Text | | _Italic_ | **Bold** | `Code` | ## Code Blocks ```jsx // Button.jsx const Button = ({ text, onClick }) => { const [count, setCount] = useState(0) const handleClick = () => { setCount(count + 1) onClick?.() } return ( ) } ``` ## Other Elements — sub, sup, abbr, kbd, mark H2O Xn + Yn = Zn GIF is a bitmap image format. Press CTRL + ALT + Delete to end the session. Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures. ---