diff --git a/content/post/markdown-basics.md b/content/post/markdown-basics.md new file mode 100644 index 0000000..977fb0b --- /dev/null +++ b/content/post/markdown-basics.md @@ -0,0 +1,22 @@ +--- +title: "Markdown Basics" +date: 2021-10-01T12:00:00+10:00 +draft: false +tags: ['example'] +categories: ['markdown'] +--- + +# Heading + +Paragraph with **bold** and *italic* text. + +## Lists + +1. First item +2. Second item + +You can also include code: + +```go +fmt.Println("Hello, world!") +``` diff --git a/content/post/more-markdown.md b/content/post/more-markdown.md new file mode 100644 index 0000000..c8657c2 --- /dev/null +++ b/content/post/more-markdown.md @@ -0,0 +1,16 @@ +--- +title: "More Markdown" +date: 2021-10-05T12:00:00+10:00 +draft: false +tags: ['example'] +categories: ['markdown'] +--- + +Here is a link to [Hugo](https://gohugo.io). + +And a simple table: + +| Fruit | Color | +|------|-------| +| Apple | Red | +| Banana | Yellow | diff --git a/content/post/my-first-post.md b/content/post/my-first-post.md index 406ac15..16c28ba 100644 --- a/content/post/my-first-post.md +++ b/content/post/my-first-post.md @@ -6,4 +6,4 @@ tags: ['sample'] categories: ['sample-posts'] --- -This is my first post... Will be deleted but just to test this. Predominately for demo purposes. \ No newline at end of file +Welcome to the blog! This short entry shows how a simple Markdown post looks using this theme. diff --git a/content/post/my-second-post.md b/content/post/my-second-post.md index 84579e3..0bab20a 100644 --- a/content/post/my-second-post.md +++ b/content/post/my-second-post.md @@ -6,9 +6,8 @@ tags: ['sample'] categories: ['sample-posts'] --- -Second post.. There are tools to generate the data above. But I just generated it. - -This is -* mark down -* Compiled to html +This is my second example post. The header above was generated automatically. +Here is a small list written in Markdown: +* Item one +* Item two