##Github Organization
- Basic Github folder Organization
- Folders for Content
- Folders for site structure, page layout and global styling
##Article Post
Most of the folders with underscores before the name (e.g. _gettingstarted
) will appear at the top of the list of folders. These folders will contain the content that will appear on the site.
The folders without underscores (e.g. css
) will contain code for the layout and style of the site.
With the exception of _sass
, _layouts
, and _includes
, all of the folders at the top of the list named _categoryName
contain articles organized under these specific groupings. The content of these files can be edited. The changes will only affect the article associated with that file.
With the exception of _sass
, _layouts
, and _includes
, all of the folders with the naming convention folderName
contain markup that affect the layout and styling either at a global level or article level. Approach adding or editing to the content of this folder with caution
Articles require the follow content areas filled to maintain a consistent layout: Layout, Title, Featured, Weight, Tags, DateAdded, Author, and Content.
This will always be set to page. This tells Jekyll how to render the documentation HTML.
This will set the header for the documentation page being written. This will also be the title displayed in all nav bars, searches, etc..
If this is set to true, the document will be visible in the nav bar by default. If this is set to false, it will be hidden but can be navigated to by clicking ‘view more’ in the nav.
This determines the order of items displayed in the nav. 1 will be given highest priority, 2 second, and so on. Not required, but allows you to order the nav in a specific way. For instance, the most trafficked page on your site could be given a weight of 1 so that it appears first on the nav list.
These are displayed on both the documentation page as well as the search page. The tags must be enclosed in brackets [ ], and are comma delimited.
This data attribute is added to the header-data next to the page author. There is no specific format, as it will just take whatever you type here and add it to the post.
This data attribute is also added to the header-data and, like the date, does not have any specific format.
Code Highlighting ( ``` ) via markdown is not rendering line breaks properly. To fix this, Jekyll has a built in code highlighter that wraps the code properly. To use this, encapsulate code snippets in the following format (specifying the language highlighting to use):
{% highlight bash %}
YOUR CODE HERE
{% endhighlight %}
Tags are a core component of the search and browsing experience. It helps the search tool find articles as they are organized according to categories. It also is beneficial with helping the user understand the context how the articles are organized.
When creating a new article, include tags in this order [ category, subject, subject]. For example, if an article is to be organized under ‘Getting Started,’ then the order will be [ getting started, subject name, subject name ].