DEV Community

irenejoeunpark
irenejoeunpark

Posted on

Adding new feature of markdown in my ssg Application

As a school work, lab3 on Open source development course, I added two more features in my SSG application, that was revised by my classmates.
I picked two more markdown features, which are code block and the horizontal line.

Example

File name called Sample.md

Sample

H1 Tag Testing

print("This is the code part!");

Strong Text testing

Horizontal line below Testing.


sample HTML created

Sample.html is created

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Sample </title>
  <meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<h1>Sample </h1><h1>H1 Tag Testing </h1><p><code>  print("This is the code part!");  </code></p><p><strong>Strong Text testing </strong></p><p>Horizontal line below Testing.  </p><hr></body>
</html>
Enter fullscreen mode Exit fullscreen mode

image

Because two classmates worked on mine, and the coding style was different, I had to work on to match the coding style of all of us three during my lab.

The challenging part was to understand the other's added code on my project and then add new feature upon that.

It was a great opportunity to learn on collaboration, and learn the importance of the comments, coding styles.

Issue 14 (code block) :https://github.com/irenejoeunpark/ssgApplication/issues/14
Issue 15 (horizontal line) : https://github.com/irenejoeunpark/ssgApplication/issues/15

PR for Issue 14 : https://github.com/irenejoeunpark/ssgApplication/pull/16
PR for Issue 15: https://github.com/irenejoeunpark/ssgApplication/pull/17

Top comments (0)