Task 2 - Create/Modify MD pages

Create or copy Markdown pages for each task within the chapter

  1. Each Chapter can have 1 or more tasks which should be completed by the participants
  2. Naming of the task Markdown pages doesn’t matter, and is only used to aid the content author in organizing the content.
    Info

    Note that the filename doesn’t matter other than to help organize content. The Title and Weight dictate the leftnav visual and ordering of the pages. Lower weight pages are displayed first

    taskPage taskPage
Warning

Because the file and folder names are very similar in our example repo, it can become confusing to know where to make edits. Make sure you’re editing the correct file in your IDE/editor

  1. This page contains several useful markdown shortcodes you can use for visual pop-outs on the the site

Lots of shortcodes & Features available here

  • Badges:

    Important Version6.6.6 Captain InfoNew Awesome

  • Icons:

    ⭐ Tips this is a star 💡 this is a lightbulb

  • Notices

    Note

    this is a note box

    Tip

    this is a tip box

    Info

    this is a tip box

    Warning

    The examples and sample code provided in this workshop are intended to be consumed as instructional content. These will help you understand how various Fortinet and Azure services can be architected to build a solution while demonstrating best practices along the way. These examples are not intended for use in production environments without full understanding of how they operate.

  • Expandable sections":

    Thank you!

  • Tabs

    hello.
    print("Hello World!")
    echo "Hello World!"
    printf"Hello World!");
  • Buttons:

    Get Hugo Get Hugo

  • Mermaid (diagrams & charts):

        graph LR;
            If --> Then
            Then --> Else
    %%{init:{"theme":"forest"}}%%
    graph LR;
        A[Hard edge] -->|Link text| B(Round edge)
        B --> C{<strong>Decision</strong>}
        C -->|One| D[Result one]
        C -->|Two| E[Result two]
    
%%{init:{"fontFamily":"monospace", "sequence":{"showSequenceNumbers":true}}}%%
sequenceDiagram
    Alice->>John: Hello John, how are you?
    loop Healthcheck
        John->>John: Fight against hypochondria
    end
    Note right of John: Rational thoughts!
    John-->>Alice: Great!
    John->>Bob: How about you?
    Bob-->>John: Jolly good!