On Mon, Feb 11, 2013 at 11:54 AM, RKA <[email protected]> wrote: > I noticed that the indentation of bullet points didn't seem to matter. > > Such that: > * Bullet point one > *Sub-bullet one > *Sub-bullet two > *Bullet two > *Sub-bullet one > > Didn't come out formatted correctly. All the sub bullets looked like code. >
Your sub-bullets need to line up with your new "let margin: http://rdoc.rubyforge.org/RDoc/Markup.html#label-Simple+Lists The new left margin would be where the first character after the bullet point character starts. In your example the 'B' after the star: * Bullet point one ('B' is in the third column) * Sub-bullet one ('*' is also in the third column) * Sub-bullet two * Bullet two * Sub-bullet two > > Also, it didn't seem to process words between pluses as code ex: +this is > code+ did not format properly > If you look here: http://rdoc.rubyforge.org/RDoc/Markup.html#label-Text+Markup You'll see that the text markup using the start '*', underscore, '_', and plus sign '+' only work when put around single words (no whitespace). You'll have to use the HTML-tag style of markup (<b>, <em>, or <tt> respectively) if you want to markup strings containing multiple words. > > Did the commands change? Where can I learn the new commands? > The markup reference I use is: http://rdoc.rubyforge.org/RDoc/Markup.html > > Also, where can I learn about the different skins or themes for Rdoc? > Using the command line: rdoc --help You'll see that the "--template=NAME" command-line option allows you to change which template to use. For a list of templates, check out: https://www.ruby-toolbox.com/search?q=rdoc+template > > > On Mon, Feb 11, 2013 at 10:47 AM, Bartosz DziewoĆski > <[email protected]>wrote: > >> I think this is just a different "skin" or "theme" for RDoc. The >> command-line interface and the data is still the same; it's just displayed >> in a prettier way. >> >> -- >> Matma Rex >> >> > -- Kendall Gifford [email protected] -- [email protected] | https://groups.google.com/d/forum/ruby-talk-google?hl=en --- You received this message because you are subscribed to the Google Groups "ruby-talk-google" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
