These documents and tutorials appear on nokogiri.org.
You could start by emailing nokogiri-talk.
Or, if you're feeling less chatty, you could just open a Github Issue.
Take a look at the open issues!
- Fork this repository.
bundle install
andbundle exec rake dev:setup
- Edit the files in
docs/
(and note that some files exist in subdirectories likedocs/tutorials/
. bundle exec rake preview
to spin up a mkdocs server to host the site locally.- Submit a pull request.
We use mkdocs to generate the static files for the site, which are pretty fancy and include a search capability.
Note that files in docs/
are preprocessed (see below) and placed into staging/
along with some files from Nokogiri's repository, so editing files in docs/
won't update live in the mkdocs server.
Lines starting with ~~~ inline <filename>
are replaced by the file contents in a blockquote.
It's recommended to place anything that's not text into a separate asset file (so my classy editor can use the right mode).
So, if you want to inline any blockquoted content, create a file in docs/assets
and reference it from the markdown file like so:
Here's some XML for your entertainment:
~~~ inline assets/shows.xml
And here's some ruby:
~~~ inline assets/search-setup.rb
In many places in the docs, ruby code is presented along with its output, like in this example.
When the docs are generated, this ruby code is actually run with the installed version of nokogiri, and the output is captured! Wicked awesome! How does that work?
Lines starting with ~~~ ruby <filename>
are replaced by the output of running the code in <filename>
through xmpfilter.
So, if you want to inline ruby code and its output, create a file in docs/assets
and reference it from the markdown file like so:
Here's some ruby along with its stdout:
~~~ ruby assets/search-xpath-characters-first.rb
If you want to add a new chapter, make sure you update the file mkdocs.yml
so it appears in the nav bar.
Don't use inline links. Instead, use footnote-style links (like you can see in this document's raw format). Any variation is OK, including blank name:
Check out [my lolcat][]
[my lolcat]: http://icanhascheezburger.com/
or a semantic name:
Check out [this picture of my lolcat][lolcat]
[lolcat]: http://icanhascheezburger.com/
or an integer:
Check out [this picture of my lolcat][1]
[1]: http://icanhascheezburger.com/
Just please don't do this:
Check out my [lolcat](https://www.youtube.com/watch?v=dQw4w9WgXcQ)
Thank you!