Skip to content
This repository has been archived by the owner on Aug 4, 2023. It is now read-only.

Latest commit

 

History

History
113 lines (85 loc) · 4.66 KB

CONTRIBUTING.md

File metadata and controls

113 lines (85 loc) · 4.66 KB

Contributing

Thanks to GitHub, it is very easy to contribute to open source. To make your contribution, just follow the guide below.

Familiarize

Before you contribute, it is important that you Familiarize yourself with code syntax, structure, and style. The code you write must maintain uniform with already established code to make sure it functions properly and looks best for future contributors.

The code for the compiler is in the /src/ directory. Since that is where you will be coding, this is where you should familiarize.

The entire script uses cases and switched, to provide smooth flowing through different layers of the parsing process. Please, do not use if/else statements. They take up a lot more space and often do not work as planned.

Fork

This is where you start contributing. To fork the repository, click the button in the top right corner of the main page of the repository. This will create a clone of AbstractML under your name, with you as the owner.

A fork is a branch of a repository where you can edit whatever you want without it affecting the overall project. While this may be true, you are discouraged from doing so, as it will render you unable to submit a pull request to push your changes.

Instead, take this opportunity to test bits of code to see what they do. When you feel you are ready to begin writing, you may move on.

Write

This is where your contribution takes place. You will be writing in the compiler, so you should open up that file. You now have the opportunity to add and edit the code, and that is exactly what you are going to do.

Add

If you are adding to the code, navigate to the bottom of the document. Make sure you are still inside the parse() function. This is where you will make your entry. Copy and paste code from another section of the document and add it to the bottom. Once the formatting is set up how you feel is correct, you may edit the values in your copied function to encompass a new tag. For example, if you copied the "u" tag and are creating a "b" tag, you would change

This

  case "u":
      switch(part[2]) {
        case null:
        case undefined:
          return stripEmpty`<${tagname}>${part[1]}</${tagname}>`;
          break;
        default:
          switch(part[2].replace(/\s/g,'')) {
            case '':
            case '.':
            case ' ':
              return stripEmpty`<${tagname} ${part[1]}>`;
              break;
            default:
              return stripEmpty`<${tagname} ${part[1]}>${part[2]}</${tagname}>`;
              break;
          }
      }

to This

  case "b":
      switch(part[2]) {
        case null:
        case undefined:
          return stripEmpty`<${tagname}>${part[1]}</${tagname}>`;
          break;
        default:
          switch(part[2].replace(/\s/g,'')) {
            case '':
            case '.':
            case ' ':
              return stripEmpty`<${tagname} ${part[1]}>`;
              break;
            default:
              return stripEmpty`<${tagname} ${part[1]}>${part[2]}</${tagname}>`;
              break;
          }
      }

Or, you may also write your own function from scratch, and include your own special functionality. It all depends on what you think you can do! Just make sure to comment and commit descriptively, so it is crystal-clear what you did.

Edit

If you find a bug in a function, or just want to make it more practical or add on, you can edit existing functions! This can be done by simply editing values in a function of adding more cases to it. The more cases in a function, the more powerful it is. For example, if you wanted to add just text to a "h1" tag, you would change

This

  case "h1":
   switch(part[1]) {
    default:
     return stripEmpty`<h1 ${part[1]}>${part[2]}</h1>`;
     break;
   }

to This

  case "h1":
   switch(part[2]) {
    case null:
    case undefined:
     return stripEmpty`<h1>${part[1]}</h1>`;
     break;
    default:
     return stripEmpty`<h1 ${part[1]}>${part[2]}</h1>`;
     break;
   }

Pull Request

After you have completed your changes, it is time to create a pull request. In your fork, you can click the green "Pull Request" button. From here, it asks you to fill out a template, which you must do for the admins. After you have completed the steps, submit your request. This sends your fork to the admins for approval. If they approve it, it will automatically merge with master.

You're Done!

Congratulations! You finished making your first open source contribution to AbstractML! We'd love if you starred the repository (to attract more contributors) or contributed again, to make it even better!