Yard plugin to output markdown documentation.
Markdown has become the de-facto documentation standard. I heavily rely on Obsidian to render my storage of markdown notes. But markdown is used not just for scribbles, supported is far and wide. We can render markdown file on any device, probably even on thermometer with a screen. But also everyone knows enough markdown to be dangerous (or productive). It's a pitty that rdoc and yard can't output a proper markdown file. I would like to change that.
- Compatible with Github Flavored Markdown
- Produce .csv index file
- Mimick yard html layout where it makes sense to maintain familiarity
Yard doesn't load plugin by default, so you need to load plugin through ~/.yard/config:
!!!yaml
load_plugins: true
autoload_plugins:
- markdownInstall a plugin
gem install yard-markdown
Run yardoc --format=markdown to generate markdown documentation.
It seems important to note, that yard claims to have support for RDoc. That support is certainly present, but output for rdoc is dramatically different. A lot of useful information seems lost in the process.
If you know how to improve that, please get in touch or submit a patch.
So in meantime, there is work going on a competing gem for RDoc and it's called rdoc-markdown gem.
This gem emits index of all markdown files in a index.csv file.
There are decent tools that offer search through structured plain-text files. But my expectation is that nobody will use CSV as an actual search index, but rather import it into something that performs this function better.
In my personal use-case, I use SQLite. All other databases seem to have a good support for CSV imports.
Unit tests verify renderer behavior, index links, and anchor consistency for both YARD-style and RDoc-style sources.
Run:
bundle exec rake testRegenerate local sample docs:
bundle exec rake examples:generateValidate generated markdown in sample docs:
bundle exec rake markdown:validate_examplesThere is also a real-world validation harness for repositories with substantial YARD documentation (rspec-core, sidekiq):
bundle exec rake markdown:validate_real_worldThis task validates generated markdown against CommonMark + GFM rendering, and reports unresolved local links found in upstream source comments while still validating local anchor/link structure.
GitHub Actions CI now runs this task on every push/PR, so sidekiq and other real-world fixture gems are verified continuously.
For reproducible checks, the task clones pinned tags (rspec-core v3.13.2, sidekiq v7.3.10) into tmp/real-world/repos before generating output.