Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Teaching Tuesday: Markdown
Search
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
Katherine White
March 13, 2018
1
110
Teaching Tuesday: Markdown
Katherine White
March 13, 2018
Tweet
Share
More Decks by Katherine White
See All by Katherine White
WCUS 2019 - Responsible Tracking
katherinemwhite
0
550
NTC 2019: Finding the Needle
katherinemwhite
0
95
NTC 2019: Responsible Tracking
katherinemwhite
1
100
BADCamp 2018: Unobtrusive User Insights
katherinemwhite
0
40
WPCampus: Documentation for Developers
katherinemwhite
1
230
NTC 2018: Securing Your Website with HTTPS
katherinemwhite
0
130
NTC WordPress Day - Gutenberg: Are you ready?
katherinemwhite
1
140
PNWDS: The SEO Magic of Structured Data
katherinemwhite
0
140
Creating SEO Magic Using Structured Data
katherinemwhite
0
67
Featured
See All Featured
The browser strikes back
jonoalderson
0
780
Breaking role norms: Why Content Design is so much more than writing copy - Taylor Woolridge
uxyall
0
200
Ethics towards AI in product and experience design
skipperchong
2
220
Effective software design: The role of men in debugging patriarchy in IT @ Voxxed Days AMS
baasie
0
250
How to Think Like a Performance Engineer
csswizardry
28
2.5k
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
11
860
Optimising Largest Contentful Paint
csswizardry
37
3.6k
Bash Introduction
62gerente
615
210k
It's Worth the Effort
3n
188
29k
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
12
1.5k
B2B Lead Gen: Tactics, Traps & Triumph
marketingsoph
0
74
So, you think you're a good person
axbom
PRO
2
1.9k
Transcript
Markdown Teaching Tuesday, 13.03.2018
What is it?
Plain-text format
Uses keyboard characters to indicate meaning
Whitespace matters
There are different “flavors” (We mostly use GitHub-flavored markdown at
Kanopi)
The Basics
Headings # Level One ## Level Two ### Level Three
Lists * Unordered List * Unordered List 1. Ordered List
1. Ordered List 2. Ordered List
Links [Text to link](https://where-to-go.com)
Emphasis **Bold Text** *Italic Text* _Italic Text_
Code (Preformatted Text) `this is a line of code` ```
This is a block of code ```
Images 
Not so Basics
Tables (GitHub flavored) Column One Header | Column Two Header
| Column Three Header ------ | ------ | ------ Row One, Column One | Row One, Column Two | Row One, Column Three Row Two, Column One | Row Two, Column Two | Row Two, Column Three
Where can I use this?
GitHub *.md files Pull Requests Issues
Teamwork Tasks (but not comments)
Teamwork Notebooks
Requirements Documentation (MkDocs)
Slack (Kinda)
Resources • Markdown Basics: https://daringfireball.net/projects/markdown/basics • Cheatsheet (GitHub-flavored): https://github.com/adam-p/markdown- here/wiki/Markdown-Cheatsheet
• Stack Edit (in-browser editor): https://stackedit.io/ • Bear: http://www.bear-writer.com/ • MacDown: https://macdown.uranusjr.com/ • Your code editor of choice likely has a markdown preview plugin as well.