This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang-tools-extra.
from 8429065e [clangd] Add unittests for D51917 new dff75f49 Reland "Implement a (simple) Markdown generator"
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: clang-doc/CMakeLists.txt | 1 + clang-doc/Generators.cpp | 3 + clang-doc/Generators.h | 2 +- clang-doc/MDGenerator.cpp | 312 +++++++++++++++++++++ clang-doc/Representation.h | 15 +- clang-doc/YAMLGenerator.cpp | 10 +- clang-doc/gen_tests.py | 33 ++- clang-doc/tool/ClangDocMain.cpp | 43 +-- test/clang-doc/md-comment.cpp | 48 ++++ .../{test_cases/linkage.cpp => md-linkage.cpp} | 39 +++ .../{test_cases/module.cpp => md-module.cpp} | 9 + test/clang-doc/md-namespace.cpp | 46 +++ test/clang-doc/md-record.cpp | 97 +++++++ 13 files changed, 620 insertions(+), 38 deletions(-) create mode 100644 clang-doc/MDGenerator.cpp create mode 100644 test/clang-doc/md-comment.cpp copy test/clang-doc/{test_cases/linkage.cpp => md-linkage.cpp} (56%) copy test/clang-doc/{test_cases/module.cpp => md-module.cpp} (53%) create mode 100644 test/clang-doc/md-namespace.cpp create mode 100644 test/clang-doc/md-record.cpp