-
-
Notifications
You must be signed in to change notification settings - Fork 418
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
[documentation] Embbed source code in documentation and link them #2291
Comments
@codec-abc would you be interested in adding this to generated documentation? |
Sure. A couple of notes:
I can focus on the first point to start, but since I don't know neither the Pony compiler nor MkDocs, could you share your ideas on how to achieve it? |
@codec-abc pony's standard library documentation is generated using command to the compiler that can already be used by user standard libraries. There's no need to add to pony stable. See For "embedding source code", you'd need to make a decision, it can point to code at a remote URL, it can point to a file/files that are hosted locally, you can embed directly in the same file. I'd start with getting the mechanics in place in a way that requires no fancy javascript so embedding directly in the same doc and hiding and showing is probably not the best idea. However, you could include the source at the end of the current file and have an anchor that points to it (and an anchor back) or something of that sort. First step: get familiar with the documentation generation code in There's a make command to generate documentation for ponyc but its currently tied to Linux: See #2316 Note these two ponyc commands from the help:
that's what is used to generate standard library documentation and can be used to generate library docs as well. |
Thanks, it does help a lot. |
Sounds like a plan @codec-abc ! |
I have made a bit of progress and found a solution that I think can work quite well. But it not easy as it seems since Highlight.js -the JS library used by MkDocs to do the syntax highlighting- does not support some feature such as line numbers and highlighting of a block of source code. My current (manual) prototype involve doing the following:
pages:
# The pages already generated today
- source :
- main.pony: src/main.md
- other.pony: src/other.md
# And so on...
extra_css: [extra.css]
extra_javascript: [extra.js] This is what it does: It tells MkDocs to run the bit of the JS file. That JS file search the page for an hidden div containing the HTML escaped source code of the pony file. It set the content of the file into a Here is a screen capture of my prototype: In the near future, if you are OK with the current direction this is going I will clean up the existing code that I have and try to automate my current solution. Then, I will try to add links from the generated documentation to the corresponding section in the source code. |
This looks interesting @codec-abc. Could you upload the prototype somewhere that folks could play with it? |
Sure, here is the MkDocs handcrafted prototype. It should work out of the box by typing |
Also I just realized that the whole HTML escaping thing is not really necessary. The line numbering can be added after the code block creation. So basically, the source code can be wrapped in just 2 lines |
Sorry, I meant, can you upload the generated HTML somewhere so people can play around with that? |
@codec-abc how does one navigate to the source code? |
That is what is left to do. Like I said (but not very clearly) I have to add links from the already generated documentation to the source code. I have not explored |
Perhaps I misunderstood what you meant by a prototype |
Well yes it is far from done. I can clean up and add a few links manually for now. But from a user perspective it demonstrate what it should look like since what is left to do is mostly automation and should be not visible to the user. |
how do i see what it would look like? what i downloaded appears to be the same as what i would get currently. |
I am cleaning up a bit. I will upload a minimalist version with manual links added. It would be far less confusing. |
sounds good. |
Here it is. If I have done things properly you should see what looks like a standard generated pony documentation. Expect it has a source file embedded that you can see in clicking on EDIT: Do you want that I try to upload it to Github pages so other can view it more easily? |
I don't get the src when clicking on the main.pony. A GH pages that people can easily go navigate would be perfect @codec-abc. Would make feedback/acceptance much easier. |
I have uploaded the "prototype generated documentation" to Github pages. It seems to work like I intended. I have only tested on FF nightly and chrome. Please let me know if you have issues on your side (Like a missing source file). |
By the way, I should note that the prototype "design" come from this comment on the MkDocs issues pages. |
@SeanTAllen Did you discuss the "prototype" with the others Pony members? If yes, do you have any feedback? |
There was no sync this week. I'm not sure if I'll be able to attend the next couple but this has been marked as needing discussion. |
I made some progress and I am pretty happy with the result. Normally, all the sources filed end up in the documentation and links to each relevant part are added automatically. I have updated my example. This time there is no manual fix involved. The documentation is put straight out to GitHub pages once I ran |
I really like this very much. Just one small comment, the Thanks for pushing this. |
A few thoughts from me:
Overall, I like it! Thanks for working on it. |
Thank you for the positive feedback, I will do a bit of cleanup and try to have something ready for review in the next few days/weeks. @mfelsche I agree with you. Because of its current location it shows up on the left ribbon too. I would probably place it after and make it smaller in the same occasion. @jemc I will change the name. About the second point, I don't think it is easy and I like having the whole file. If not, we might run into situation like this: An user want to see code that make method About my current work on that, there is a few hacks that I made that I don't like: 1- I added a zero space invisible character for after each triple backtick in the source code. Otherwise, the markdown parser thinks the code section is terminated and the rendering is messed up. The result is okay but if the user copy paste the source from the browser and try to compile it, he/she probably gonna have some weird error because of an invisible character. If you have ideas on how to solve some of these points, please share your ideas. |
On GitHub, at least, you can keep adding more backticks to the outer codefence - for example, typing this:
renders as this: actor Main
"""
This actor is the main one in the program.
```
This is an inline code fence!
```
Isn't that neat?
"""
new create(env: Env) =>
None Incidentally, I was able to escape that first one by adding yet more backticks on the starting block - nine in total. In truth, this only kicks the problem down the road, but at least it eliminates the common case of using triple-backticks as code examples in docstrings.
If you share your branch, we can give better feedback on these two points.
I'm not very well-versed in how the docgen works, but what about this is hacky? It sounds like you're just upgrading the dependency? |
Thanks. I will definitively try the trick of the repeated backticks. For 2 and 3, you can look here but I would suggest to wait a bit because the code I wrote is far from perfect and I can certainly clean easily a big part myself. About 4, it is hacky because MkDocs provide already highlight.js by itself and I would provide another -more up to date- version. When browsing a page, both scripts would be loaded and if the newly script is included after the older it should override it. |
Can we get them to update to a more recent version? |
Are we worried about highlight.js for pony standard library docs or for documentation generation in general? if its the former, we can swap out the supplied one for one of our own at the time we create the site. that's not a particularly great solution given that its problematic for other folks using documentation generation. however, our "library" and "application" documentation generation isn't the greatest right now. |
I found some time to do a bit of cleanup and tried the suggestions. The trick of the multiples backticks work nicely which allowed me to get rid of a big chunk of ugly code. Thanks @jemc ! I gave another look at the source to find a way to get rid of platform specific code but I didn't managed to do it. I also reworked the structure of the embedded source. Now each source is in a directory whose name is the one of the package of the source file. This should avoid unnecessary filename clashes but I fear that it can create other problems. I also tried to override highlight.js by putting an escaped version that I could dump into a file when generating the source documentation, but the C compiler complains that my string literal is too big (~200ko of Javascript). At this point, I don't think I can make any real sensible progress by myself, so what should I do next? |
Mkdocs ticket for updating highlight.js is here: mkdocs/mkdocs#1284. |
What do you think about creating our own theme (http://www.mkdocs.org/user-guide/custom-themes/) - for now just by copying the currently used theme from the mkdocs sources (https://github.com/mkdocs/mkdocs/tree/master/mkdocs/themes), include a more recent highlight.js manually (maybe via one of those fancy javascript buildtools), putting it into the While it might be more effort for us, maintaining this copied code, it will surely give us more control for changes like this and avoids hacks. |
I Like the idea. However, is the |
@codec-abc we could add That would be work for @kulibali and I. @kulibali could handle windows. I'd take the other platforms. |
…packages. This is the AppVeyor part of ponylang#2291.
As part of issue #2291, we've decided to create a `docs-support` directory as part of the standard install that can be used to include additional javascript, css, and other content used when building package documentation. This PR fulfills that when building from source on MacOS and Linux. Additionally, it should install when using homebrew. RPM and Debian packages will require another PR.
As part of #2291, we decided that we would package the documentation generation support files that are located in .docs/ into the installed packages in `docs-support`. This will allow them to be used not only when Pony is released to update the standard library website but also when users are running for known ponyc projects.
@codec-abc there are PRs to open and/or merged to address the work @kulibali and I were going to do. You can move forward. |
As part of issue #2291, we've decided to create a `docs-support` directory as part of the standard install that can be used to include additional javascript, css, and other content used when building package documentation. This PR fulfills that when building from source on MacOS and Linux. Additionally, it should install when using homebrew. RPM and Debian packages will require another PR.
As part of #2291, we decided that we would package the documentation generation support files that are located in .docs/ into the installed packages in `docs-support`. This will allow them to be used not only when Pony is released to update the standard library website but also when users are running for known ponyc projects.
@codec The logic could be extracted to a more reusable function. |
Hi,
When browsing the generated documentation (the std lib in my case) there is no way (as far as I know) to find the matching source code that the documentation is describing. I think it would be a nice addition if it can be made possible. As an example the Rust doc has links (the [src] links) that redirect to a page containing the source code with line numbers, syntax highlighting and the relevant parts highlighted.
This have the following advantage:
The only minor drawback that I see is that it would make the documentation slightly bigger because the source code need to be included in it.
(Sorry if a similar issue has been opened before)
The text was updated successfully, but these errors were encountered: