有人在Github上用几行代码就造了个锤子便签
程序IT圈
共 1502字,需浏览 4分钟
·
2021-08-29 02:16
开源最前线(ID:OpenSourceTop) 猿妹整编
链接:https://github.com/nihaojob/markdown-css-smartisan
这个项目虽然只有11个Star,但却有1700个分支。
# use npm
$ npm install markdown-css-smartisan
# use yarn
$ yarn add markdown-css-smartisan
import 'markdown-css-smartisan'
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/markdown-css-smartisan/github-markdown.css" />
<style>
.markdown-body {
width: 80%;
margin: 0 auto;
}
</style>
<article class="markdown-body">
<h1>Unicorns</h1>
<p>All the things</p>
</article>
评论