-
-
Notifications
You must be signed in to change notification settings - Fork 26
Conversation
Previously macros such as `@__FILE__` would not have permalinks since they did not include parenthesis. Not only was this annoying for cross- referencing but it made searching difficult as searching for `@__FILE__` would result in no search results. Note: Parenthesis will automatically be added to macros without them in the rendered documentation.
The current change also now allows for a normal function without parentheses but includes the return annotation. Previously you could only get the return annotation if you included the use of parentheses. |
Additionally fixes #7 |
@nolta can you take a look? |
@tkelman could you take a look at this? |
I guess this regex change looks safe, though I don't entirely know how this repo and the readthedocs setup work. There's nothing julia-version-specific about this, right? I guess we merge, adjust the sha in the doc virtualenv requirements file, and see if it looks right? |
Fix for macros without parameters
Thanks @tkelman. No there is nothing Julia version specific about this. I believe updating the |
If you feel so inclined, sure. On Wed, Jan 27, 2016 at 9:24 AM -0800, "Curtis Vogt" [email protected] wrote: Thanks @tkelman. No there is nothing Julia version specific about this. I believe updating the Reply to this email directly or view it on GitHub: |
Previously macros such as
@__FILE__
would not have permalinks since they did not include parenthesis. Not only was this annoying for cross-referencing but it made searching difficult as searching for@__FILE__
would result in no results.Note however that parenthesis will automatically be added to macros without them in the rendered documentation. Ideally these would not be added.