Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/erwanlt/markdowngenerator
a quick module to generate markdown file
https://github.com/erwanlt/markdowngenerator
cucumber hacktoberfest java markdown
Last synced: 16 days 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 (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-10-29T14:18:32.000Z (about 4 years ago)
- Last Synced: 2023-03-03T23:00:48.672Z (almost 2 years ago)
- Topics: cucumber, hacktoberfest, java, markdown
- Language: Java
- Homepage:
- Size: 114 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/ec06ec44c76d48989b56d2b544da86ed)](https://app.codacy.com/gh/ErwanLT/markdownGenerator?utm_source=github.com&utm_medium=referral&utm_content=ErwanLT/markdownGenerator&utm_campaign=Badge_Grade)
[![Build Status](https://travis-ci.com/ErwanLT/markdownGenerator.svg?branch=main)](https://travis-ci.com/ErwanLT/markdownGenerator)
[![codecov](https://codecov.io/gh/ErwanLT/markdownGenerator/branch/main/graph/badge.svg?token=rIZIffZ1ug)](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.