I am trying to document some rake tasks that I wrote using RDoc comments in my class, and I ran into a problem representing square brackets. I want to add some examples of how to start my tasks using parameter faces and therefore have an rdoc line like this:
#, eg. rake build[MyProject]
The problem is that converting the RDoc parser creates a link instead of printing square brackets. I tried all kinds of escape sequences: [; [[; #{[My project]}; & Amp; # 91; MyProject & # 93; but nothing works.
Is there any way to avoid these square brackets so that they do not convert to a link?
Thanks Aaron
source
share