Exploring Markdown
Intro
For this activity you will practice researching and learning markdown
Markdown is a simple markup language that uses plain text characters for formatting. For example, text between asterisk (*
) characters is italicized and the #
character is used to format lines as headings
Typically, markdown is converted by applications into HTML and often allows the embedding of pure HTML within a markdown document
You will use markdown to write README files which are used to document your projects
Tasks
- Research how to use the Markdown language
- Install a Markdown editor/viewer
- Create a cheatsheet for Bash Commands using Markdown -- your first piece of technical documentation in this program
Research
Here are a few links that will help you learn Markdown:
Install a Markdown Editor
For editing and viewing Markdown, use VS Code or a dedicated markdown editor such as MacDown.
Create a Cheatsheet for Bash Commands
Although you can find numerous cheatsheets for Bash (Terminal) commands, why not create your own using markdown to get some practice with it?
Note that a cheatsheet need not be an exhaustive reference - so feel free to exclude commands that are used infrequently.
Publish to your personal Github (optional)
For additional practice, you can publish your markdown git commands cheatsheet to your personal github.
Here are the steps you'll need to take to make this happen:
- Place your markdown file inside a folder.
- Initialize a local repository inside of it.
- Create a remote repository for it on Github.com.
- Add the remote URL to your local repository.
- Stage, Commit & push to Github.
- Profit!