cmc-csci040 icon indicating copy to clipboard operation
cmc-csci040 copied to clipboard

Topic 04 Lab

Open mikeizbicki opened this issue 3 years ago • 36 comments

For Part I of this week's lab, you have to practice using markdown with github issues. This will ensure that you know all of the syntax that you'll have to implement in your homework assignment. You can find the full guide to the syntax at https://guides.github.com/features/mastering-markdown/

To complete Part I, reply to this issue with a message that contains all of the markdown syntax.

Your message should contain the following "inline" elements: bold text, italic text, ~~strikethrough~~ text, a link to your favorite webpage, some <code>inline code</code> and an image: the octocat.

And your message should contain the following "block" elements:

An ordered list:

  1. the first item
  2. the second item
  3. the last item

An unordered list:

  • the first item
  • the second item
  • the last item

A code block:

<html>
<body>
<b>Hello World!</b>
</body>
</html>

And a little table:

Name of family member Role in the family
Homer Dad/Husband
Marge Mom/Wife
Bart Son/Brother
Lisa Daughter/Sister
Maggie Daughter/Sister

Important: Notice that the code blocks contain HTML, but that the HTML inside of a code block is not getting rendered as HTML. You will have to ensure that this happens correctly in your homework, and there is a hint in the compile_code function about how to accomplish this task.

mikeizbicki avatar Sep 28 '22 16:09 mikeizbicki