Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 1.49 KB

ContributionGuideLines.md

File metadata and controls

14 lines (11 loc) · 1.49 KB

Orchard Dojo Library contribution guidelines

The Orchard Dojo Library is fully open source and can be edited by anyone. If you found an error or would like to improve it you're more than welcome; just submit a pull request!

The Library is stored as Markdown-formatted text files in a repository on GitHub. The files can be edited with any text editor but we recommend Notepad++.

  • The same guidelines apply as to the Orchard documentation except that documents here not only can but are required to have a leading first-level title.
  • Name files and folders with PascalCasing.
  • Files named Index.md are automatically opened when requesting their folder.
  • You can use relative links to link between files; paths are the same online as they are in the repository. Keep in mind that links to folders (when the Index file is opened automatically) must end with a slash (/) while links to files shouldn't.
  • Add 3 line breaks after an H1, 2 before (if it's not immediately after an H1) and 1 after an H2.
  • When adding inline code snippets use the apostroph-delimited syntax.
  • When adding paths or filenames set them as emphasized (italic) like C:\path\to\file.txt.
  • Keep in mind that Markdown should also be valid HTML, so encode HTML entities accordingly. E.g. use the encoded version of the < and > signs (see this source).