Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chalarangelo/markdown-builder
1kb Markdown builder for Node.js
https://github.com/chalarangelo/markdown-builder
builder library markdown node npm
Last synced: about 1 month ago
JSON representation
1kb Markdown builder for Node.js
- Host: GitHub
- URL: https://github.com/chalarangelo/markdown-builder
- Owner: Chalarangelo
- License: mit
- Archived: true
- Created: 2018-09-14T09:28:20.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-06T21:34:42.000Z (almost 5 years ago)
- Last Synced: 2024-09-26T03:08:25.503Z (about 1 month ago)
- Topics: builder, library, markdown, node, npm
- Language: JavaScript
- Homepage:
- Size: 265 KB
- Stars: 90
- Watchers: 12
- Forks: 18
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Markdown builder for Node
[![Build Status](https://api.travis-ci.org/30-seconds/markdown-builder.svg?branch=master)](https://travis-ci.org/30-seconds/markdown-builder)
![npm bundle size (minified + gzip)](https://img.shields.io/bundlephobia/minzip/markdown-builder.svg)
![npm](https://img.shields.io/npm/v/markdown-builder.svg)> Official README builder for the 30-seconds projects.
## Usage
```bash
npm install --save markdown-builder
```Using `markdown-builder` is quite easy:
```js
const markdown = require('markdown-builder');
const { headers } = markdown;headers.hX(3, '3rd Header') // ### 3rd Header
```## Example
**Check out [30-seconds-of-code](https://github.com/Chalarangelo/30-seconds-of-code)'s READMEs, they are automatically generated using `markdown-builder`**## API
### Headers
Use the `h1`,`h2`,`h3`,`h4`,`h5`,`h6` or `hX` to generate a markdown header. Calling `hX` with a level above `6` returns a `h6` Header.```js
const markdown = require('markdown-builder')
const { headers } = markdownheaders.h1('1st Header') // # 1st Header
headers.h2('2nd Header') // ## 2nd Header
headers.h3('3rd Header') // ### 3rd Header
headers.hX(5, '5th Header using hX') // ##### 5th Header using hX
```### Emphasis
```js
const markdown = require('markdown-builder')
const { emphasis } = markdownemphasis.b('bold text')
emphasis.i('italic text')
emphasis.s('strikethrough text')
```### Lists
```js
const markdown = require('markdown-builder')
const { lists } = markdownlet a = ['Item 1', 'Item 2']
// ordered list
lists.ol(a)
// 1. Item 1
// 2. Item 2
lists.ol(a, (item) => item.toUpperCase()) // use callbacks to alter each item
// 1. ITEM 1
// 2. ITEM 2// unordered List
lists.ul(a)
lists.ul(a, (item) => item.toUpperCase())
```### Miscellaneous
```js
const markdown = require('markdown-builder')
const { misc } = markdown// Images
let alt = 'image of lights', url = 'https://www.w3schools.com/w3css/img_lights.jpg', title = 'lights'
misc.image(alt, url)
misc.image(alt, url, title)// Collapsible summary/details block
misc.collapsible('Summary', 'content');// Github Anchor
misc.anchor('A header with /*() special-characters!'); // #a-header-with--special-characters// Link
misc.link('Github', 'https://github.com/flxwu')// horizontal rule
misc.hr()```
**Collapsible**:
Summary
Content#### A header with /*() special-characters!