Skip to content

Latest commit

 

History

History
82 lines (59 loc) · 2.45 KB

README.md

File metadata and controls

82 lines (59 loc) · 2.45 KB

Hello-World

A4 Homework for COM306 Software Engineering Due: 9/18/2020 5:00pm.

Github Markdown Lesson 1

For lesson 1, the goal is to learn how to format text using github flavor of markdown, create lists (numbered and bulleted), create tables and add links and images to the document.

Simple Text

Simple text is easy. Start with a new line and add your text.

Second Level Header

You can add different levels of headers easily.

Third Level

Fourth Level

Fifth Level

For creating Bold simply add ** before and after the characters. For creating Strikethrough add ~~ around text. Make sure to not leave any spaces between text and these special characters For creating italics simply use * or _ around text These can be combined around text text to create italic bold

Lists

The text in the previous section can be turned into list with bullets or numbers

As Bulleted list

  • For creating Bold simply add ** before and after the characters.
  • For creating Strikethrough add ~~ around text. Make sure to not leave any spaces between text and these special characters
  • For creating italics simply use * or _ around text
  • These can be combined around text text to create italic bold

As numbered list

  1. For creating Bold simply add ** before and after the characters.
  2. For creating Strikethrough add ~~ around text. Make sure to not leave any spaces between text and these special characters
  3. For creating italics simply use * or _ around text
  4. These can be combined around text text to create italic bold

Task Lists

  • Task 1
  • Task 2
  • Task 3
  • Task 4 is not complete

Quotes

Markdown has many flavors. For GitHub readme files, remember to use the related syntax.

Tables

c1 c2 c3
a1 b1 c1
a2 b2 c2
a3 b3 c3

Python Code Example

import unittest
class TestSum(unittest.TestCase): 
  def test_list_int(self):
    """
    Test that it can sum a list of integers
    """
    data = [1, 2, 3]
    result = sum(data) self.assertEqual(result, 6)
if __name__ == '__main__': 
  unittest.main()

Adding Links

This link to GitHub Markdown Reference was created using the following syntax

[text](URL)

Adding an image from the web

Conn Logo

![Alt Text](URL)