Classwork 1

Markdown Basics

Author

Byeong-Hak Choe

Published

January 23, 2026

Modified

January 21, 2026

Introduction to Markdown

Markdown is a lightweight markup language with plain-text formatting syntax. Its main goal is to be readable and easy to write, even when viewed as plain text. Markdown is widely used for creating formatted text on the web and in various applications such as Jupyter Notebook.

Basic Syntax

Headings

Headings are created by adding one or more # symbols before your heading text. The number of # symbols indicates the level of the heading.

# Heading 1
## Heading 2
### Heading 3

Emphasis

You can make text bold by wrapping it with two asterisks **, and italic by using one asterisk *.

*italic* or _italic_
**bold** or __bold__

Lists

Unordered lists are created using *, -, or +, while ordered lists are numbered.

- Item 1
- Item 2
  - Subitem 2.1
  - Subitem 2.2
1. First item
2. Second item

Images

Images are created using ![Alt Text](Image URL).

![Geneseo Logo](https://bcdanl.github.io/img/geneseo-logo.gif)

Advanced Syntax

Blockquote

> Be yourself. Everyone else is already taken. - Oscar Wilde.

Emojis

Code Blocks

Code blocks are created by using triple backticks (```). Optionally, you can specify the language for syntax highlighting.

```
"string"
```
```python
# Python code block
import numpy as np
```

Practice Problems

  • Do the following tasks on this Classwork 1 Discussion Board:
    1. Basic Syntax: Write a comment with a heading, an unordered list, an ordered list, a link, and an image.
    2. Advanced Syntax: Write a comment that includes a Python code block, a blockquote, and an emoji.

References

Discussion

Welcome to our Classwork 1 Discussion Board! πŸ‘‹

This space is designed for you to engage with your classmates about the material covered in Classwork 1.

Whether you are looking to delve deeper into the content, share insights, or have questions about the content, this is the perfect place for you.

If you have any specific questions for Byeong-Hak (@bcdanl) regarding the Classwork 1 materials or need clarification on any points, don’t hesitate to ask here.

All comments will be stored here.

Let’s collaborate and learn from each other!

Back to top