rice/dotfiles/.markdown.help.md

218 lines
6.9 KiB
Markdown
Raw Permalink Normal View History

2021-07-28 23:44:53 -07:00
# Advanced Markdown with [David Wells](https://twitter.com/DavidWells)
[Slides -> github.com/DavidWells/advanced-markdown](https://github.com/DavidWells/advanced-markdown/)
## Table of Contents
<!-- AUTO-GENERATED-CONTENT:START (TOC:collapse=true&collapseText="Click to expand") -->
<details>
<summary>"Click to expand"</summary>
- [Why markdown?](#why-markdown)
- [Markdown basics](#markdown-basics)
- [Advanced Formatting tips](#advanced-formatting-tips)
* [`left` alignment](#left-alignment)
* [`right` alignment](#right-alignment)
* [`center` alignment example](#center-alignment-example)
* [`collapse` Sections](#collapse-sections)
* [`additional links`](#additional-links)
* [Badges](#badges)
- [Useful packages](#useful-packages)
- [Useful utilities](#useful-utilities)
- [How Serverless uses markdown](#how-serverless-uses-markdown)
* [DEMO](#demo)
- [Other Markdown Resources](#other-markdown-resources)
</details>
<!-- AUTO-GENERATED-CONTENT:END -->
## Why markdown?
Markdown is a universal doc format that is easy to write and easy to add to a version control system.
- **Open** - Anyone can submit content, fix typos & update anything via pull requests
- **Version control** - Roll back & see the history of any given post
- **No CMS lock in** - We can easily port to any static site generator
- **It's just simple** - No user accounts to manage, no CMS software to upgrade, no plugins to install.
---
## Markdown basics
The basics of markdown can be found [here](https://guides.github.com/features/mastering-markdown/) & [here](https://daringfireball.net/projects/markdown/). Super easy!
## Advanced Formatting tips
### `left` alignment
<img align="left" width="100" height="100" src="http://www.fillmurray.com/100/100">
This is the code you need to align images to the left:
```
<img align="left" width="100" height="100" src="http://www.fillmurray.com/100/100">
```
---
### `right` alignment
<img align="right" width="100" height="100" src="http://www.fillmurray.com/100/100">
This is the code you need to align images to the right:
```
<img align="right" width="100" height="100" src="http://www.fillmurray.com/100/100">
```
---
### `center` alignment example
<p align="center">
<img width="460" height="300" src="http://www.fillmurray.com/460/300">
</p>
```
<p align="center">
<img width="460" height="300" src="http://www.fillmurray.com/460/300">
</p>
```
---
### `collapse` Sections
Collapsing large blocks of text can make your markdown much easier to digest
<details>
<summary>"Click to expand"</summary>
this is hidden block
</details>
```
<details>
<summary>"Click to expand"</summary>
this is hidden
</details>
```
Collapsing large blocks of Markdown text
<details>
<summary>To make sure markdown is rendered correctly in the collapsed section...</summary>
1. Put an **empty line** after the `<summary>` block.
2. *Insert your markdown syntax*
3. Put an **empty line** before the `</details>` tag
</details>
```
<details>
<summary>To make sure markdown is rendered correctly in the collapsed section...</summary>
1. Put an **empty line** after the `<summary>` block.
2. *Insert your markdown syntax*
3. Put an **empty line** before the `</details>` tag
</details>
```
---
### `additional links`
[Website](http://www.serverless.com) • [Email Updates](http://eepurl.com/b8dv4P) • [Gitter](https://gitter.im/serverless/serverless) • [Forum](http://forum.serverless.com) • [Meetups](https://github.com/serverless-meetups/main) • [Twitter](https://twitter.com/goserverless) • [Facebook](https://www.facebook.com/serverless) • [Contact Us](mailto:hello@serverless.com)
```
[Website](http://www.serverless.com) • [Email Updates](http://eepurl.com/b8dv4P) • [Gitter](https://gitter.im/serverless/serverless) • [Forum](http://forum.serverless.com) • [Meetups](https://github.com/serverless-meetups/main) • [Twitter](https://twitter.com/goserverless) • [Facebook](https://www.facebook.com/serverless) • [Contact Us](mailto:hello@serverless.com)
```
---
### Badges
I hate them so. Don't use badges.
---
## Useful packages
1. [gray-matter](https://www.npmjs.com/package/gray-matter)
YAML front-matter is your friend. You can keep metadata in markdown files
```
title: Serverless Framework Documentation
description: "Great F'in docs!"
menuText: Docs
layout: Doc
```
2. [Remark](https://www.npmjs.com/package/remark)
Useful for rendering markdown in HTML/React
3. [Markdown Magic](https://github.com/DavidWells/markdown-magic)
- [Repo](https://github.com/DavidWells/markdown-magic)
- [Plugins](https://github.com/DavidWells/markdown-magic#plugins)
- Show automatic doc generation. [Example 1](https://github.com/DavidWells/markdown-magic/blob/master/examples/generate-readme.js#L15-L23) | [Example 2](https://github.com/serverless/examples/blob/master/generate-readme.js#L71-L87)
---
## Useful utilities
1. [Schedule Posts](https://github.com/serverless/post-scheduler) - Post scheduler for static sites
Show DEMO
2. [Zero friction inline content editing](https://jekyll-anon.surge.sh/gods/2015/02/18/vesta.html)
Show DEMO
3. [Byword](https://bywordapp.com/) & [Typora](https://typora.io/) - Good Editors
4. [Monodraw](https://monodraw.helftone.com/) - Flow charts for days
6. [Kap](https://getkap.co/) - Make gifs
4. [IDE markdown preview](https://atom.io/packages/markdown-preview)
5. Stuck on WordPress? Try [easy-markdown plugin](https://github.com/DavidWells/easy-markdown)
---
## How Serverless uses markdown
Serverless.com is comprised of 3 separate repositories
- https://github.com/serverless/blog
- https://github.com/serverless/serverless | Shoutout to [Phenomic.io](https://phenomic.io/)
- https://github.com/serverless/site
**Why multiple repos?**
1. We wanted documentation about the framework to live in the serverless github repo for easy access
2. We wanted our blog content to be easily portable to any static site generator separate from the implementation (site)
3. `prebuild` npm script pulls the content together & processes them for site build
A single repo is easier to manage but harder for people to find/edit/PR content.
---
### DEMO
- Site structure
- Serverless build process
- [Validation](https://github.com/serverless/blog/blob/master/.travis.yml#L10)
- [Editing Flow](https://serverless.com/framework/docs/providers/aws/cli-reference/deploy/)
- Github optimizations
- [Link from top of each doc to live link on site](https://github.com/serverless/serverless/blob/master/docs/providers/aws/events/schedule.md)
- use markdown magic =) to [auto generate tables](https://github.com/serverless/examples) etc
- [Hide yaml frontmatter from github folks](https://github.com/serverless/serverless/blame/master/docs/providers/aws/events/schedule.md#L1-L7)
- consider linking everything to site
## Other Markdown Resources
- [Verb](https://www.npmjs.com/package/verb) - Documentation generator for GitHub projects
- [ACSII docs](http://asciidoctor.org/) - Markdown alternative