Back to Nextra

Code blocks

examples/blog/app/posts/(with-comments)/code-blocks/page.mdx

2.0.0-beta.6844 B
Original Source

Test filename, line highlighting and empty lines

js
console.log('hello world')

console.log('goodbye world')

Test showLineNumbers and word highlighting

scala
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

text
hello world

Test with code block default language

const links = [
  { href: '/settings', label: 'Settings' },
  { href: '/support', label: 'Support' },
  { href: '/license', label: 'License' },
]

Link to google

Link to GitHub