我想用 markdown 记录我的代码库的其他功能和部分,并将它们解析并显示在我文档的不同部分。我怎样才能做到这一点?
/**
* Merge route into the global application state
*/
export const reducer = (state = initialState, action) => {
将它们直接导入styleguide.config.js
会导致整个文件被解析为文本。
我想用 markdown 记录我的代码库的其他功能和部分,并将它们解析并显示在我文档的不同部分。我怎样才能做到这一点?
/**
* Merge route into the global application state
*/
export const reducer = (state = initialState, action) => {
将它们直接导入styleguide.config.js
会导致整个文件被解析为文本。
使用 documentation.js 等工具生成 Markdown文档,然后将这些文件作为部分包含到 Styleguidist 中:
module.exports = {
sections: [
{
name: 'Some other API',
content: 'docs/generated-file.md'
},
{
name: 'Components',
components: 'lib/components/**/*.js'
}
]
}