We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I posted this (which describes the problem a bit more) before realizing the problem was local to Yard: http://stackoverflow.com/questions/7882985/how-do-i-render-a-verbatim-code-pre-plus-sign-with-rdoc-markup
When I use RDoc markup in my README.rdoc:
Some text code block +-----+
Then run the Yard Rake task:
YARD::Rake::YardocTask.new do |t| t.files = ['{features,lib}/**/*.{feature,rb}', "-", "History.rdoc"] t.options = ['--title', "tim Documentation (#{Tim::VERSION})"] t.options += %w(--readme README.rdoc) t.options += %w(--private --protected --verbose) end
...I get HTML:
<p> Some text </p> <pre class="code"> <tt>-----</tt> </pre>
I'd expect this to render HTML:
<p> Some text </p> <pre class="code"> +-----+ </pre>
If I do $ rdoc README.rdoc, I see that I get the HTML that I'd expect.
$ rdoc README.rdoc
Using yard 0.7.3, rdoc 3.10.
The text was updated successfully, but these errors were encountered:
f94a5f1
Thanks for the report!
Sorry, something went wrong.
Thanks for the fix!
No branches or pull requests
I posted this (which describes the problem a bit more) before realizing the problem was local to Yard:
http://stackoverflow.com/questions/7882985/how-do-i-render-a-verbatim-code-pre-plus-sign-with-rdoc-markup
When I use RDoc markup in my README.rdoc:
Then run the Yard Rake task:
...I get HTML:
I'd expect this to render HTML:
If I do
$ rdoc README.rdoc
, I see that I get the HTML that I'd expect.Using yard 0.7.3, rdoc 3.10.
The text was updated successfully, but these errors were encountered: