()
| 32 | } |
| 33 | |
| 34 | function convertHomePage() { |
| 35 | const readmeMarkdown = fs.readFileSync('./README.md', 'UTF8'); |
| 36 | const html = liquid('page', 'Home') + rewriteURLs(marked(readmeMarkdown)); |
| 37 | fs.writeFileSync('./docs/index.html', html, 'UTF8'); |
| 38 | } |
| 39 | |
| 40 | const map = { |
| 41 | "https://microsoft.github.io": "", |
no test coverage detected