Chirun Markdown Extensions ========================== The flavour of Markdown used in Chirun is `Python Markdown `_ with `PyMdown Extensions `_ and some further Chirun Extensions. Chirun-specific extensions are described below. Including Images ---------------- Include images by using the filename path relative to the source document. Chirun will detect images included in this way and will copy them to the output directory automatically. `Attribute Lists `_ can be used to customise image style. .. code-block:: markdown ![A plot of y=sin(x)](images/lecture_sine2.png){width="70%"} Markdown Slides --------------- Slides can be written in Markdown and converted to a continuous HTML page, HTML slides and printable PDF by creating a :ref:`Slides` item type. `An example of Markdown slides for Chirun can be found in the sample course `__. The source document for the above Markdown slides can be found on GitHub at https://raw.githubusercontent.com/chirun-ncl/sample_course/master/markdown/lecture.md Slide Separator ~~~~~~~~~~~~~~~ Separate slides in Chirun Markdown by inserting a line containing nothing but (at least) 3 dashes, surrounded by a blank line above and below:: --- The slide separator renders as a horizontal rule in the HTML web page version of the content. Embedding Other Content ----------------------- Numbas ~~~~~~ A Numbas exam can be embedded into a document with the ```` tag: .. code-block:: markdown YouTube ~~~~~~~ A YouTube video be embedded into a document with, .. code-block:: markdown .. list-table:: :header-rows: 1 * - Attribute - Description * - ``data-id`` - The YouTube video ID Vimeo ~~~~~~~ A Vimeo video be embedded into a document with, .. code-block:: markdown .. list-table:: :header-rows: 1 * - Attribute - Description * - ``data-id`` - The Vimeo video ID oEmbed ~~~~~~~ Chirun supports embedding content with providers that support `oEmbed `_. .. code-block:: markdown .. list-table:: :header-rows: 1 * - Attribute - Description * - ``data-url`` - The URL of the oEmbed compatible content to be embedded Code Blocks ----------- Code blocks with syntax highlighting can be included using `SuperFences `_. This example shows two different ways to include code blocks. The first is a code block set to use Python syntax highlighting. The second code block also displays Python code, but also includes a button that can be clicked to show the output from running the code. .. code-block:: ### Print statements ```python print("Hello", "World") ``` ### If statements ```runnable lang="python" x = 2 if x > 0: print('it is true') ```