Test filename
, line highlighting and empty lines
console.log("hello world");
console.log("goodbye world");
Test showLineNumbers
and word highlighting
object Hello {
def main(args: Array[String]) = {
println("hello, world")
}
}
object Hello {
def main(args: Array[String]) = {
println("hello, world")
}
}
Test highlighting inline code
import React from 'react'{:js}
Test without specified language
hello world
Test with code block default language
const links = [
{ href: '/settings', label: 'Settings' },
{ href: '/support', label: 'Support' },
{ href: '/license', label: 'License' },
]