>From http://michaelhatherly.github.io/Lexicon.jl/manual/#viewing-documentation
:
Lexicon hooks into the REPL's ? mode (help-mode) once using Lexicon has
been called from the REPL. Other environments, such as editors, are not
currently supported.
Am Mittwoch, 11. Februar 2015 17:08:24 UTC+1 schrieb Christoph Ortner:
>
> [The Juno mailing list seems dead? Hence I am re-posting my question here;
> apologies for posting twice.]
>
> Juno doesn't seem to recognise doc strings, or am I getting something
> wrong? Here is a short piece of code:
>
> using Docile, Lexicon
> @doc doc"Some doc with `markdown`."->function blah()
> println("bleh")
> end
>
> If I past this into a REPL, then type ?blah, then I get the correct
> doc-string displayed. If I type blah into Juno and hit CTRL-D, then I
> just get blah (generic function with 1 method)
>
> On playing around with this, I noticed that even in the REPL help(blah) will
> display blah (generic function with 1 method), while ?blah will display
> the correct doc-string.
>
> Am I doing something wrong again or is this not expected to work (yet)?
>
> Thanks,
> Christoph
>