Skip to content

Markdown playground

Ed Bacher edited this page Mar 2, 2018 · 21 revisions
  • Code block language specification: You can optionally specify the language for a code block by specifying lang: langspec as the first line. For example this code block (in your Google Doc):


        lang:java
public class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, World");
    }
}
    renders as:
Clone this wiki locally