https://github.com/davidkhahn/markdown
simple cheat sheet for markdown writing, git forms
https://github.com/davidkhahn/markdown
github markdown readme
Last synced: 18 days ago
JSON representation
simple cheat sheet for markdown writing, git forms
- Host: GitHub
- URL: https://github.com/davidkhahn/markdown
- Owner: DavidKHahn
- Created: 2019-01-31T07:20:59.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-01T03:02:18.000Z (over 7 years ago)
- Last Synced: 2025-08-12T09:31:36.432Z (11 months ago)
- Topics: github, markdown, readme
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
*This text* is italic
_This text_ is italic
**This text** is italic
__This text__ is italic
~~This text~~ is strikethrough
- - -
___
> This is a quote
[ Hahn](http://github.com)
[ Hahn](http://github.com
" Hahn")
* Item 1
* Item 2
* Item 3
* Nested Item 1
* Nested Item 2
1. Item 1
1. Item 2
1. Item 3
`
This is a paragraph
`

```
npm install
npm start
```
```javascript
function add(num1, num2) {
return num1 + num2;
}
```
```python
def add(num1, num2)
return num1 + num2
```
| Name | Email |
| --------- | -------------- |
| John Doe | john@gmail.com |
| Jane Doe | john@gmail.com |
* [x] Task 1
* [x] Task 2
* [ ] Task 3
## Purpose
Added documentation and links for using Workbench with a service principal.
Fixed a minor bug.
## Does this introduce a breaking change?
* [ ] Yes
* [x ] No
## Pull Request Type
What kind of change does this Pull Request introduce?
* [ x] Bugfix
* [ ] Feature
* [ ] Code style update (formatting, local variables)
* [ ] Refactoring (no functional changes, no api changes)
* [ x] Documentation content changes
* [ ] Other... Please describe:
# How to Test
* Get the code
```
git clone [repo-address]
cd [repo-name]
git checkout [branch-name]
npm install
```
* Test the code
```
```
* What to Check
Verify that the following are valid
* ...
# Other Information