ECE 60141 and ECE 63700

Installing a Markdown Editor

What Markdown Is

Markdown is plain text with a few simple conventions: # starts a heading, - starts a bullet, **bold** makes bold text. A Markdown file has the extension .md, and it is an ordinary ASCII text file — you can read it in any editor. A Markdown editor simply adds a formatted preview alongside the text.

Markdown is the standard format for writing instructions to an AI assistant, and we will use it throughout the course.

Two Ways to Go

You have two good options, and either one is fine for this course:

If you are unsure, start with the lightweight editor. You can always add VS Code in Lab 2.

Option 1: A Lightweight Editor

MacDown shows the text and the formatted result in two panes at once. In ghostwriter, open the preview pane from the View menu (or press F9).

Option 2: VS Code

Visual Studio Code is free and runs on all three platforms.

To preview a Markdown file in VS Code, press Cmd+Shift+V on a Mac or Ctrl+Shift+V on Windows or Linux.

Try It

Whichever editor you chose, create a new file, save it as test.md, and type a heading and a few bullets:

# My Test File
- first item
- second item

Open the preview. You should see your text formatted, with the heading large and the bullets indented. You now have a working Markdown editor.

Back to the laboratory index