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

Latest commit

 

History

History
executable file
·
105 lines (60 loc) · 2.3 KB

2020-01-14-welcome.md

File metadata and controls

executable file
·
105 lines (60 loc) · 2.3 KB

This is the title

Here's the table of contents:

  1. TOC {:toc}

Basic setup

Jekyll requires blog post files to be named according to the following format:

YEAR-MONTH-DAY-filename.md

Where YEAR is a four-digit number, MONTH and DAY are both two-digit numbers, and filename is whatever file name you choose, to remind yourself what this post is about. .md is the file extension for markdown files.

The first line of the file should start with a single hash character, then a space, then your title. This is how you create a "level 1 heading" in markdown. Then you can create level 2, 3, etc headings as you wish but repeating the hash character, such as you see in the line ## File names above.

Basic formatting

You can use italics, bold, code font text, and create links. Here's a footnote 1. Here's a horizontal rule:


Lists

Here's a list:

  • item 1
  • item 2

And a numbered list:

  1. item 1
  2. item 2

Boxes and stuff

This is a quotation

{% include alert.html text="You can include alert boxes" %}

...and...

{% include info.html text="You can include info boxes" %}

Images

![]({{ site.baseurl }}/images/logo.png "fast.ai's logo")

Code

General preformatted text:

# Do a thing
do_thing()

Python code and output:

# Prints '2'
print(1+1)
2

Tables

Column 1 Column 2
A thing Another thing

Tweetcards

{% twitter https://twitter.com/jakevdp/status/1204765621767901185?s=20 %}

Details

this section is under construction

Details
Open by Default. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris
Details
Closed by Default. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris

Footnotes

Footnotes

  1. This is the footnote.