# Syntax Highlighting

- Author: Kojin Glick
- Published: 2022-07-29
- Canonical: https://www.kojinglick.com/blog/syntax-highlighting-test

---

Hopefully the below code renders as Typescript:

    let order: number = 0;
    order++;

And the below code renders as Rust:

    use std::net;

    fn main() {
        println!("Hello World");
    };
    
Finally this code should pase as raw HTML:

    <!DOCTYPE html>
    <html>
        <head>
            <title>Title of the document</title>
        </head>

        <body>
            

                The content of the document......
            

            
         </body>
     </html>
     
Time for tutorials
