在没有关联组件文件的样式指南中包含降价文件?

Include markdown file in style guide without associated component file?

有没有办法在没有关联的 React 组件文件的 styleguidist 中包含 markdown 文件?

现在我正在使用虚拟组件来完成此操作,但我想知道是否有更好的方法?我还隐藏了虚拟组件的路径(通过配置中的 getComponentPathLine()),这样它就不会像样式指南中的组件那样出现。

谢谢

在您的风格指南配置中:

module.exports = {
  sections: [
    {
      name: 'Introduction',
      content: 'docs/introduction.md'
    }
  ]
}

查看更多示例in the docs