The docs live at https://docs.probo.ci.
Want to add to the docs? Have a fancy .probo.yaml
file you want to show off? See something outdated that we missed? Contributing is as simple as opening a pull request with some changes.
The docs are written in markdown format and live in the docs
directory. To contribute:
- Submit your changes in a pull request.
- Add the needs review label.
That's it! We'll take care of wiring any new pages into the menu.
Need a markdown primer? Check out Adam Pritchard's Markdown Cheatsheet.
{% highlight ruby linenos %}
def foo
puts 'foo'
end
{% endhighlight %}
{% highlight css linenos %}
body {
background: red;
}
{% endhighlight %}
{% highlight yaml %}
var cli = new ArgumentParser({
prog: 'js-yaml',
version: require('../package.json').version,
addHelp: true
});
{% endhighlight %}
You can share your .probo.yaml
in just a few steps:
- Create a markdown file in the
_examples
directory and paste in the following template.
---
title:
author:
github:
---
{% highlight yaml %}
Your yaml goes here!
{% endhighlight %}
- Enter a title for your example. You can optionally add you or your organization's name as you would like it displayed and your GitHub username so we can link to your profile.
- Paste the contents of your
.probo.yaml
file between thehighlight yaml
tags. - Submit a pull request and add the needs review label.
Thank you for your contribution!