This change has two components. The moves the generated file for a namespace to the directory named after the namespace in a file named 'index.<format>'. This greatly improves the browsing experience since the index page is shown by default for a directory. The second improves the markdown output by adding the links to the referenced pages for children objects and the link back to the source code.
Details
- Reviewers
phosek juliehockett - Commits
- rG7003f64c1eb2: [clang-doc] Improving Markdown Output
rG45499f3801d8: [clang-doc] Improving Markdown Output
rGdac21fdd5923: [clang-doc] Improving Markdown Output
rG0fbaf3a7c239: [clang-doc] Improving Markdown Output
rGdeae8ee69167: [clang-doc] Improving Markdown Output
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Thanks so much for doing this! Would you be able to link some screenshots? Just so I can have a better sense of what's changing here.
clang-tools-extra/clang-doc/Representation.h | ||
---|---|---|
271 | s/Reference/Info |
The output for for html did not change - what changed was the path for namespaces. For example the "async" namespace was in documented in async.html, and the types and functions in async where in async/*.html. After this change the "async" namespace is documented in async/index.html. This makes browsing very nice.
On the markdown side, I added the link functionality that existed on the HTML output for linking to classes and child namespaces.
Before | After |
clang-tools-extra/clang-doc/Representation.h | ||
---|---|---|
271 | Done. |
clang-tools-extra/clang-doc/MDGenerator.cpp | ||
---|---|---|
282 | level should be Level. | |
283 | Nit: no extra empty line. | |
297 | No need for OK, you can simply do if (FileErr). | |
301 | No curly braces for blocks with a single statement according to LLVM style. | |
306 | The same here, no curly braces for blocks with a single statement according to LLVM style. | |
311 | Here as well. | |
322 | The same here, both the error checking and curly braces. | |
clang-tools-extra/clang-doc/Representation.cpp | ||
124 | iter should be Iter (or just I) according to LLVM style. | |
134 | No curly braces for blocks with a single statement. | |
146 | No curly braces for blocks with a single statement. | |
159 | No curly braces for blocks with a single statement. |
Updates to conform to LLVM style guide per reviewer feedback.
clang-tools-extra/clang-doc/MDGenerator.cpp | ||
---|---|---|
282 |
LGTM % one minor nit, do you want me to land this for you?
clang-tools-extra/clang-doc/assets/index.js | ||
---|---|---|
33–34 | You could omit braces here as well (we've been following C/C++ style guide for JS). |
Yes, please merge the change. Out of curiosity, is there a linter that can be used to help check for style rule adherence?
This is failing on Windows:
../../clang-tools-extra/unittests/clang-doc/MDGeneratorTest.cpp(77): error: Expected: Expected Which is: "# namespace Namespace\n\n\n\n## Namespaces\n\n* [ChildNamespace](../ChildNamespace/index.md)\n\n\n## Records\n\n* [ChildStruct](../ChildStruct.md)\n\n\n## Functions\n\n### OneFunction\n\n* OneFunction()*\n\n\n\n## Enums\n\n| enum OneEnum |\n\n--\n\n\n\n\n\n" To be equal to: Actual.str() Which is: "# namespace Namespace\n\n\n\n## Namespaces\n\n* [ChildNamespace](..\\ChildNamespace\\index.md)\n\n\n## Records\n\n* [ChildStruct](..\\ChildStruct.md)\n\n\n## Functions\n\n### OneFunction\n\n* OneFunction()*\n\n\n\n## Enums\n\n| enum OneEnum |\n\n--\n\n\n\n\n\n" With diff: @@ -5,5 +5,5 @@ ## Namespaces -* [ChildNamespace](../ChildNamespace/index.md) +* [ChildNamespace](..\\ChildNamespace\\index.md) @@ -10,5 +10,5 @@ ## Records -* [ChildStruct](../ChildStruct.md) +* [ChildStruct](..\\ChildStruct.md) [ FAILED ] MDGeneratorTest.emitNamespaceMD (1 ms) [----------] 1 test from MDGeneratorTest (1 ms total) [----------] Global test environment tear-down [==========] 1 test from 1 test case ran. (1 ms total) [ PASSED ] 0 tests. [ FAILED ] 1 test, listed below: [ FAILED ] MDGeneratorTest.emitNamespaceMD 1 FAILED TEST
Making paths in markdown files be posix style. This fixes the tests on windows hosts.
This is still failing on Windows:
******************** TEST 'Extra Tools Unit Tests :: clang-doc/./ClangDocTests.exe/MDGeneratorTest.emitNamespaceMD' FAILED ******************** Note: Google Test filter = MDGeneratorTest.emitNamespaceMD [==========] Running 1 test from 1 test case. [----------] Global test environment set-up. [----------] 1 test from MDGeneratorTest [ RUN ] MDGeneratorTest.emitNamespaceMD C:\ps4-buildslave2\llvm-clang-lld-x86_64-scei-ps4-windows10pro-fast\llvm-project\clang-tools-extra\unittests\clang-doc\MDGeneratorTest.cpp(77): error: Expected: Expected Which is: "# namespace Namespace\n\n\n\n## Namespaces\n\n* [ChildNamespace](../ChildNamespace/index.md)\n\n\n## Records\n\n* [ChildStruct](../ChildStruct.md)\n\n\n## Functions\n\n### OneFunction\n\n* OneFunction()*\n\n\n\n## Enums\n\n| enum OneEnum |\n\n--\n\n\n\n\n\n" To be equal to: Actual.str() Which is: "# namespace Namespace\n\n\n\n## Namespaces\n\n* [ChildNamespace](../ChildNamespace/index.md)\n\n\n## Records\n\n* [ChildStruct](..//ChildStruct.md)\n\n\n## Functions\n\n### OneFunction\n\n* OneFunction()*\n\n\n\n## Enums\n\n| enum OneEnum |\n\n--\n\n\n\n\n\n" With diff: @@ -10,5 +10,5 @@ ## Records -* [ChildStruct](../ChildStruct.md) +* [ChildStruct](..//ChildStruct.md) [ FAILED ] MDGeneratorTest.emitNamespaceMD (1 ms) [----------] 1 test from MDGeneratorTest (1 ms total) [----------] Global test environment tear-down [==========] 1 test from 1 test case ran. (1 ms total) [ PASSED ] 0 tests. [ FAILED ] 1 test, listed below: [ FAILED ] MDGeneratorTest.emitNamespaceMD 1 FAILED TEST
level should be Level.