扫一扫分享
Qov 使用模板字面量而不是 Markdown 作为输入来渲染页面,是因为模板字面量中可插入标签函数与表达式来扩展文本的样式,比 Markdown 更加灵活。毕竟终端模拟的 Markdown 样式是有限的,而使用者的想象力是无限的,你可以自由扩展并渲染出想要的文本效果。
安装
npm install qov
const Qov = require('qov')
const qov = new Qov()
qov.section`Section One`
qov.section`Section Two`
// Expression interpolation
qov.section`Section ${() => 'Three'}`
// Render slides
qov.render()
手机预览