Home

Tools

Automated Builder Script
Logo

The Null Reference

Tips & Tricks for FTC Coding

Contribute Discuss

Contents

  • Welcome!
    • Contributing

Welcome!

Welcome to The Null Reference. This is very much a work in progress. It’s powered by Jekyll and Inkwell, and hosted on GitHub at https://github.com/aleksrutins/nullref. Please contribute your tips and tricks about FTC coding!

Contributing

First, learn Markdown.

To add a page, add a Markdown file to the root of the repo, and follow this template:

---
layout: page
title: "[page title]"
author: 
  - Your Name
---
# Page Title
[content here]

Then, add it to the navigation. Open _data/navigation.yml, and add an entry to the section that the page should be part of that looks like this:

- name: # page title
  url: # page slug (filename without the .md extension)

To modify a page, open that page, and write your modifications!

Then, create a pull request on GitHub, and I will review it.