First Post

Python snippets

Testing syntax highlighting

The following is a code sample using triple backticks ( ``` ) code fencing provided in Hugo. This is client side highlighting and does not require any special installation.

    def main():
    print(".----------------------------------------------.")
    print("|                                              |")
    print("|                                              |")
    print("|                       \\`\\  F    Cisco        |")
    print("|            /./././.   | |  i    Advanced     |")
    print("|          /        `/. | |  r    Terminal     |")
    print("|         /     __    `/'/'  e                 |")
    print("|      /\\__/\\ /'  `\\    /    w                 |")
    print("|     |  00  |      `.,.|    a                 |")
    print("|      \\Vvvv/        ||||    l                 |")
    print("|        ||||        ||||    l                 |")
    print("|        ||||        ||||                      |")
    print("|        `'`'        `'`'                      |")
    print(".----------------------------------------------.")
    print("")

See also