RDoc’s SimpleMarkup doesn’t catch all the cases of inline markup
that is really useful for a Ruby documentation. I think it’s checking
for \w+ only, but adding some other punctuation marks would be
helpful. Namely, none of the following work b/c of punctuation marks:
+ActiveRecord::Base+
+merge!+
+is_a?+
+name=+
+object.call+
It would great if the Regexp could be expanded to catch these cases.
It would great if the Regexp could be expanded to catch these cases.
is for variables and variables don’t have punctuation.
If you really want those in format, use .
RDoc makes classes and (most) methods stand out by turning them into
links. If it doesn’t link, adding a # in front should fix it.
(Single-word method calls don’t get links by default since that grabs
too many common words.)
is for variables and variables don’t have punctuation.
If you really want those in format, use .
RDoc makes classes and (most) methods stand out by turning them into
links. If it doesn’t link, adding a # in front should fix it.
(Single-word method calls don’t get links by default since that grabs
too many common words.)
SM is used for more than just generating RDocs. For instance, READMEs.
SM is used for more than just generating RDocs. For instance,
READMEs.
I’ve been pretty happy using for inline code examples, no
matter how small, that aren’t identifiers. Does this not work for you?
Not so much. It isn’t very good for all uses. Certain documents are
intended for being read both as the converted HTML and the original
text. And lots of hampers that. I really like RDoc.
Markdown’s handling of indented content is lacking in my opinion.
Moreover I’d rather use a single markup syntax everywhere in my
project, code, README, HISTORY, etc. I don’t mind have to specify a
“turn on extra processing” flag or something when I need it, but it
would be really nice if RDoc could handle a broader range of
documentation markup needs.
SM is used for more than just generating RDocs. Â For instance, READMEs.
I’ve been pretty happy using for inline code examples, no matter
how small, that aren’t identifiers. Does this not work for you?
Yeah it works, but ++ would be much simpler and clean.
In fact when docrails started I personally went a cleaned +:symbol+s
and friends, and there’s this gotcha mentioned in the rails docs
guidelines because of it. That’s people’s fault because it is clearly
documented of course, but I think suggests some people indeed expect
that + covers a bit more than \A\w+\z.
I’d certainly vote for supporting the examples that have been
mentioned in the thread.
So now I’m thinking RDoc no longer has SM ? And when I require it I am
actually picking up the RDoc built into Ruby 1.8.7, but when I require
‘rdoc’ I’m getting the latest Gem I installed.
So now I’m thinking RDoc no longer has SM ? And when I require it I am
actually picking up the RDoc built into Ruby 1.8.7, but when I require
‘rdoc’ I’m getting the latest Gem I installed.
There’s no more SM, rdoc 2.x is properly namespaced.