(filepath)
| 13 | } |
| 14 | |
| 15 | function getMarkdownOrder(filepath) { |
| 16 | const { data } = matter(fs.readFileSync(filepath, 'utf-8')); |
| 17 | const { sidebar_position } = data || {}; |
| 18 | return isNil(sidebar_position) ? 100 : sidebar_position; |
| 19 | } |
| 20 | |
| 21 | const docs = glob.sync('*.md?(x)', { |
| 22 | cwd: docsDir, |
no test coverage detected
searching dependent graphs…