CLI that generates beautiful README.md files.
readme-md-generator
will suggest you default answers by reading yourpackage.json
andgit
configuration.
readme-md-generator
is able to read your environment (package.json, git config...) to suggest you default answers during the README.md
creation process:
Generated README.md
:
Example of package.json
with good meta data:
// The package.json is not required to run README-MD-GENERATOR
{
"name": "readme-md-generator",
"version": "0.1.3",
"description": "CLI that generates beautiful README.md files.",
"author": "Franck Abgrall",
"license": "MIT",
"homepage": "https://github.com/kefranabg/readme-md-generator#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kefranabg/readme-md-generator.git"
},
"bugs": {
"url": "https://github.com/kefranabg/readme-md-generator/issues"
},
"engines": {
"npm": ">=5.5.0",
"node": ">=9.3.0"
}
}
Make sure you have npx installed (npx
is shipped by default since npm 5.2.0
)
Just run the following command at the root of your project and answer questions:
npx readme-md-generator
Or use default values for all questions (-y
):
npx readme-md-generator -y
Use your own ejs
README template (-p
):
npx readme-md-generator -p path/to/my/own/template.md
You can find ejs README template examples here.
This project exists thanks to all the people who contribute. [Contribute].
Become a financial contributor and help us sustain our community. [Contribute]
Support this project with your organization. Your logo will show up here with a link to your website. [Contribute]
Contributions, issues and feature requests are welcome.
Feel free to check issues page if you want to contribute.
Check the contributing guide.
Please
Copyright © 2019 Franck Abgrall.
This project is MIT licensed.
This README was generated with
主要记录 GitBook 的安装配置以及一些插件信息,当前使用的 GitBook 版本为 3.2.3。 推荐一下 docsify,相当于一个精简的 GitBook,不需要编译,使用很方便。这里 基于 doscify 做了一些修改,具体的效果可以看一下 在线的示例 . 运行 安装 GitBook npm install gitbook-cli -g Clone 代码到本地并运行 git clone
微信 Markdown 编辑器 项目介绍 本项目基于 wechat-format 进行二次开发,感谢 lyricat 的创意和贡献! Markdown 文档自动即时渲染为微信图文,让你不再为微信文章排版而发愁!只要你会基本的 Markdown 语法,就能做出一篇样式简洁而又美观大方的微信图文。 在线编辑器地址 Netlify: https://mdhere.netlify.app Gitee Pa
为什么要有插件 为了解耦 BetterScroll 1.x 的各个 feature 的功能,防止 bundle 体积无限制的增加。在 2.x 的架构设计当中,采用了『插件化』 的架构设计。对于 1.x 的各个 feature,在 2.x 都将以 Plugin 的形式实现。 已有的插件: pulldown pullup scrollbar slide wheel zoom mouse-wheel o
简介 这类题目思路比较简单直白,按照问题的描述,把解题的步骤一步一步直白的翻译成代码,就行了。这类题目主要考察写代码是否熟练,是否具备基本的调试能力,编程风格是否良好等。
图节点定义 无向图的节点定义如下: // 无向图的节点 class UndirectedGraphNode { int label; ArrayList<UndirectedGraphNode> neighbors; UndirectedGraphNode(int x) { label = x;} }; // 无向图的节点 struct UndirectedGraphNo
简介 当题目看不出任何规律,既不能用分治,贪心,也不能用动规时,这时候万能方法——搜索, 就派上用场了。搜索分为广搜和深搜,广搜里面又有普通广搜,双向广搜,A*搜索等。 深搜里面又有普通深搜,回溯法等。 广搜和深搜非常类似(除了在扩展节点这部分不一样),二者有相同的框架,如何表示状态? 如何扩展状态?如何判重?尤其是判重,解决了这个问题,基本上整个问题就解决了。