Creating posts with Markdown
This is a test post using the Hugo framework! This is made to be an overview of markdown and the general process of creating posts.
Simple List of Markdown Commands
This is bold, italic, and strikethrough text!
This is an ordered list of my favourite programming languages:
- C
- Python
- Javascript
This is an unordered list of my favourite foods:
- Nihari
- Biryani
- Shawarma
This is a sample of C++ code along with syntax highlighting:
using namespace std;
int main() {
cout << "Hello Reader! Welcome to my Blog" << endl;
}
Here is my favourite quote:
“Don’t trust everything you see on the internet” - Abraham Lincoln
Here is a beautiful picture of a duck:
Here is a link to a pretty cool video!
That probably covers everything I need for making posts. Thanks for reading!