Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

Latest commit

 

History

History
93 lines (64 loc) · 1.63 KB

00_Basic_Markdown.md

File metadata and controls

93 lines (64 loc) · 1.63 KB

Main Title

This examplary LiaScript document adresses basic Markdown formats.

Basic Markdown

Lists and numbers

  • alpha
  • beta
  • gamma and delta

    new Paragraph

    • and another
    • important list
  • epsilon

Block quotes

This was said some time ago ...

This was said even longer ago, I guess ...

  • aleph
  • beth

Citations

“Live as if you were to die tomorrow. Learn as if you were to live forever.”

-- Mahatma Gandhi

References

Project Website

Tables and Images

Images referencing external content

![OER Logo](https://upload.wikimedia.org/wikipedia/commons/thumb/2/20/Global_Open_Educational_Resources_Logo.svg/800px-Global_Open_Educational_Resources_Logo.svg.png)

External image references generate an error for pdf generation. This has to be evaluated!

Images referencing project internal content

OER Logo

Table

Tables Are Cool
*** columns 3 is *** right-aligned $1600
** column 2 is ** centered $12
* zebra stripes * are neat $1

Code Snippets

import time
# Quick, count to ten!
for i in range(10):
    # (but not *too* quick)
    time.sleep(0.5)
    print(i)