UNPKG

@ulu/sassdoc-to-markdown

Version:

A flexible SCSS documentation tool that generates clean, customizable Markdown from your Sass stylesheets. It leverages SassDoc for data extraction and offers various configuration options to tailor the output to your specific needs

12 lines (10 loc) 255 B
import { table, headline } from "@ulu/markdown-output-utils"; export default ({ item, headlineLevel }) => { const { property } = item.data; if (property) { return ` ${ headline("Map Properties", headlineLevel) } ${ table(property) } `; } }