• 我不去想是否能够成功
    既然选择了远方 便只顾风雨兼程

    我不去想能否赢得爱情
    既然钟情于玫瑰 就勇敢地吐露真诚

    我不去想身后会不会袭来寒风冷雨
    既然目标是地平线 留给世界的只能是背影

  • 不是因为看到了希望才坚持,而是因为坚持了,才知道没希望。

孩子,穷怎么了?穷也要挺起胸膛来,让别人看看,你不仅穷,而且还矮。

prism 实现代码高亮测试


	//使用prism实现代码高亮


	const Prism = require('prismjs');
const loadLanguages = require('prismjs/components/');
loadLanguages(['haml']);

// The code snippet you want to highlight, as a string
const code = `= ['hi', 'there', 'reader!'].join " "`;

// Returns a highlighted HTML string
const html = Prism.highlight(code, Prism.languages.haml, 'haml');

标签code highlight

最新评论