An open API service indexing awesome lists of open source software.

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

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

`

![Markdown Logo](https://markdown-here.com/img/icon256.png)

```
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