Skip to content

Latest commit

History

History
38 lines (29 loc) 路 972 Bytes

code.mdx

File metadata and controls

38 lines (29 loc) 路 972 Bytes
title description
Code Blocks
Display inline code and code blocks

Basic

Inline Code

To denote a word or phrase as code, enclose it in backticks (`).

To denote a `word` or `phrase` as code, enclose it in backticks (`).

Code Block

Use fenced code blocks by enclosing code in three backticks and follow the leading ticks with the programming language of your snippet to get syntax highlighting. Optionally, you can also write the name of your code after the programming language.

class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, World!");
    }
}
```java HelloWorld.java
class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, World!");
    }
}
```

Visit the Code Block page for more detailed docs.