This lesson is still being designed and assembled (Pre-Alpha version)

Questions

  • How is a jekyll block quote defined?

Challenge block Jekyll

Formatting

Jekyll challenge blocks are formatted as block quotes with class attributes appended.

The syntax of these block quotes is described in the formatting episode of our lesson example.

Move along!

We will not be practicing Jekyll-formatted blocks for this lesson.

Example

The following code generates a solution block quotes nested inside of a challenge block quote.

Example of Jekyll markdown specifying a challenge and solution in python

Challenge

Use the + operator to concatenate the strings “hello” and “there” in python

Solution

"hello " + "there"
"hello there"