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
Katherine White
March 13, 2018
1
100
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
440
NTC 2019: Finding the Needle
katherinemwhite
0
74
NTC 2019: Responsible Tracking
katherinemwhite
1
90
BADCamp 2018: Unobtrusive User Insights
katherinemwhite
0
30
WPCampus: Documentation for Developers
katherinemwhite
1
160
NTC 2018: Securing Your Website with HTTPS
katherinemwhite
0
100
NTC WordPress Day - Gutenberg: Are you ready?
katherinemwhite
1
120
PNWDS: The SEO Magic of Structured Data
katherinemwhite
0
140
Creating SEO Magic Using Structured Data
katherinemwhite
0
52
Featured
See All Featured
Optimising Largest Contentful Paint
csswizardry
33
2.9k
Code Reviewing Like a Champion
maltzj
520
39k
Site-Speed That Sticks
csswizardry
0
26
Keith and Marios Guide to Fast Websites
keithpitt
409
22k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
28
2k
Unsuck your backbone
ammeep
668
57k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
44
2.2k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
28
9.1k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
31
2.7k
Fireside Chat
paigeccino
34
3k
Exploring the Power of Turbo Streams & Action Cable | RailsConf2023
kevinliebholz
27
4.3k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
356
29k
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 ![Alt text for your image](https://gph.is/XHqDLh)
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.