Skip to content

Latest commit

 

History

History
30 lines (27 loc) · 624 Bytes

readme.md

File metadata and controls

30 lines (27 loc) · 624 Bytes

marked-id-no-overlap

honeo/marked-id-no-overlap
marked-id-no-overlap

なにこれ

markedのRendererを弄ってid属性値を重複しないようにしたやつ。

example

# HOGE
## hoge
## hoge
## ほげ
# 1 2 3
<h1 id="HOGE">HOGE</h1>
	<h2 id="hoge">hoge</h2>
	<h2 id="hoge2">hoge</h2>
	<h2 id="ほげ">ほげ</h2>
<h1 id="1_2_3">1 2 3</h1>

使い方

$ npm i -S marked-id-no-overlap
import marked from 'marked-id-no-overlap';