Skip to content

Commit

Permalink
exampleSite: Add more content
Browse files Browse the repository at this point in the history
  • Loading branch information
adityatelange committed May 21, 2023
1 parent d9414b2 commit 9c7e9e7
Show file tree
Hide file tree
Showing 3 changed files with 111 additions and 0 deletions.
45 changes: 45 additions & 0 deletions exampleSite/content/new-post-1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
---
title: "Markdown?"
date: 2023-05-21
tags: ["markdown", "css", "html", "chatgpt"]
---

# Introduction

Welcome to my first post! In this post, I will discuss various Markdown features and show you how to use them effectively.

## Headings

You can use headings to structure your content. Here's an example:

### Subheading

## Lists

Markdown supports both ordered and unordered lists. Here are examples of both:

1. Item 1
2. Item 2
3. Item 3

- Unordered item 1
- Unordered item 2
- Unordered item 3

## Links

You can create links to external websites or internal pages. Here's an example:

[Visit my website](https://github.com/adityatelange/hugo-index)

## Code Blocks

Markdown allows you to include code blocks. Here's an example of a code block in JavaScript:

```javascript
function greet(name) {
console.log("Hello, " + name + "!");
}

greet("John");
```
35 changes: 35 additions & 0 deletions exampleSite/content/new-post-2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
title: "Markdown Formatting"
date: 2023-05-21
tags: ["markdown", "css", "html", "chatgpt"]
---

In this post, we'll explore various formatting options available in Markdown.

## Emphasis

You can emphasize text using _italic_ or **bold** styles.

## Quotes

Markdown allows you to include block quotes. Here's an example:

> "The only way to do great work is to love what you do." - Steve Jobs
## Images/Figures

You can include images as figure in your posts. Here's an example:

{{< figure src="https://images.unsplash.com/photo-1571328565610-56f07b8bf3ce" link="https://unsplash.com/photos/s9KlC-kMFtU?utm_source=unsplash&utm_medium=referral&utm_content=creditShareLink" caption="Emergence of Mandakini river from kedar peak" >}}

## Tables

Markdown supports tables. Here's an example:

| Name | Age |
| ------- | --- |
| John | 25 |
| Jane | 30 |
| Michael | 35 |

That's all for now. Happy formatting with Markdown!
31 changes: 31 additions & 0 deletions exampleSite/content/new-post-3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
title: "Advanced Markdown"
date: 2023-05-21
tags: ["markdown", "css", "html", "chatgpt"]
---

In this post, we'll dive into some advanced Markdown features.

## Task Lists

You can create task lists with checkboxes. Here's an example:

- [x] Task 1
- [ ] Task 2
- [ ] Task 3

## Footnotes

Markdown supports footnotes. Here's an example:

Here is some text with a footnote[^1].

[^1]: This is the footnote content.

## Horizontal Rule

You can insert a horizontal rule to separate sections. Here's an example:

---

That's all for now. I hope you find these advanced Markdown features helpful!

0 comments on commit 9c7e9e7

Please sign in to comment.