avatar

Code Style Guide

Demo

Diff

使用 [!code ++][!code --] 来标记增删的行。

console.log('hewwo') 
console.log('hello') 
console.log('goodbye')

Highlight

使用 [!code highlight] 来高亮显示行:

console.log('Not highlighted')
console.log('Highlighted') 
console.log('Not highlighted')

使用 [!code highlight:3] 注释来高亮多行:


console.log('Highlighted')
console.log('Highlighted')
console.log('Not highlighted')

根据代码片段上提供的元字符串({1,3-4}),高亮显示行:

console.log('1')
console.log('2')
console.log('3')
console.log('4')

ErrorLevel

使用 [!code error][!code warning] 来指定行的日志等级:

console.log('No errors or warnings')
console.error('Error') 
console.warn('Warning')