伪代码
将Github Gist的真实代码转换为伪代码的SVG图像。
Index.js
输入:
// GitHub Gist URL
const gist = 'https://gist.github.com/knutsynstad/265226120c71426420c78c750a4eb727' ;
输出:
// SVG file
const filename = './fauxcode.svg' ;
选项:
const options = {
theme : 'light' , // 'light' or 'dark' mode
fontSize : 5 , // Line thickness and width
leading : 10 , // Space between lines
lineCap : 'round' , // Line ends '
1