Markdown Lists

Markdown Lists Markdown supports both ordered and unordered lists, as well as nested lists. Here’s how you can create them: Ordered List First item Second item Third item Unordered List List item Another item And another item Nested Unordered list Fruit Apple Orange Dairy Milk Cheese Nested Ordered list Fruit Apple Orange Dairy Milk Cheese Mixed Nested Lists First item Sub item 1 Second item Sub item 1 Sub sub item 1 Sub item 2 Third item Sub item 1 Sub sub item 1 List with paragraphs, code blocks, and blockquotes Item 1 ...

June 1, 2024 · 1 min · Theme PaperMod

Sample Markdown Blog Post

Sample Markdown Blog Post A sample blog post to test markdown rendering in PaperMod. This post includes various markdown elements such as headings, images, and code blocks. The content is meant to verify that all markdown features are displayed correctly in the theme. Sample Heading Knock knock. Who’s there? Lettuce. Lettuce who? Lettuce in, it’s cold out here! function greet(name) { return `Hello, ${name}!`; } console.log(greet('World')); 1 2 3 4 def greet(name): return f"Hello, {name}!" print(greet("World")) Another Heading This is a table With some data Row 1 Data 1 Row 2 Data 2

June 1, 2024 · 1 min · Theme PaperMod

Rich Content and Shortcodes

Hugo ships with several Built-in Shortcodes for rich content, along with a Privacy Config and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds. ...

March 10, 2019 · 1 min · Hugo Authors, PaperMod Contributors