https://github.com/erwanlt/markdowngenerator
a quick module to generate markdown file
https://github.com/erwanlt/markdowngenerator
cucumber hacktoberfest java markdown
Last synced: 3 months ago
JSON representation
a quick module to generate markdown file
- Host: GitHub
- URL: https://github.com/erwanlt/markdowngenerator
- Owner: ErwanLT
- License: mit
- Created: 2020-10-23T08:50:09.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2020-10-29T14:18:32.000Z (over 4 years ago)
- Last Synced: 2025-04-14T12:08:19.154Z (3 months ago)
- Topics: cucumber, hacktoberfest, java, markdown
- Language: Java
- Homepage:
- Size: 114 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://app.codacy.com/gh/ErwanLT/markdownGenerator?utm_source=github.com&utm_medium=referral&utm_content=ErwanLT/markdownGenerator&utm_campaign=Badge_Grade)
[](https://travis-ci.com/ErwanLT/markdownGenerator)
[](https://codecov.io/gh/ErwanLT/markdownGenerator/)
# markdownGeneratorA quick module to help generate markdown file
## Code Items
### Code
```
{
"firstName": "John",
"lastName": "Smith",
"age": 25
}
```### Syntax Highlighting Code
```json
{
"firstName": "John",
"lastName": "Smith",
"age": 25
}
```## List items
### Unordered lis
* item value
* item value
* item value### Ordered list
1. item value
2. item value
3. item value## Tasklist items
- [x] item value
- [ ] item value
- [ ] item value## Link
### With tooltip
[GitHub](https://github.com/ErwanLT "ErwanLT")### Without tooltip
[GitHub](https://github.com)## Table
|header1|header2|
|---|---|
|text1|text2|
|text3|text4|## Emphasis
### Bold
Welcome to this **project**
### Italic
Welcome to this *project*
### Bold Italic
Welcome to this ***project***
### Strikethrough
~~The world is flat.~~ We now know that the world is round.