Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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/)
# markdownGenerator

A 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.