-
Notifications
You must be signed in to change notification settings - Fork 634
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Named sections of companion guides #85
Comments
This is certainly doable. All these @ directives could simply create Hm, I wrote the comment for #85 and was suggesting similar thing, however looks like it was lost somehow (sometimes I manage to do stuff like that, just out of the blue :) |
Just adding note and link to Amy's solution for future reference:
This is long overdue for bringing it into main branch, but I currently don't have time for it :) |
Has there been any movement / updates on this? |
I'm trying to convert someone's doxygen-marked-up code to use appledoc. It seems doxygen lets you give sections names, thus:
@section library The Library
Then when you want to refer to it, you can do
- @ref library, some more text here
And it automatically replaces
@ref library
withThe Library
, as well as providing a link to that section. The@section
command also seems to make a section header.This seems to be what I've been trying to describe in bug 84, but a more general case: from this documentation I see that doxygen allows @page, @section, @subsection and @subsubsection, and it uses all of these to generate different pages and link to the right bits.
I think that copying doxygen is the way to go here, unless there's a better idea floating around!
P.S. When I get some free time I'm going to try and have a look at the appledoc code. If I was able to make some changes myself it might make up for my many feature requests :)
The text was updated successfully, but these errors were encountered: