Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
225 changes: 0 additions & 225 deletions .github/check_info_nodes_support.sh

This file was deleted.

76 changes: 0 additions & 76 deletions .github/compare_templates.sh

This file was deleted.

7 changes: 0 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -763,13 +763,6 @@ jobs:
limit: 150
update-summary: ${{ runner.os == 'Linux' && 'true' || 'false' }}

- name: Check Info Nodes
if: runner.os == 'Linux'
run: |
set -x
chmod +x .github/check_info_nodes_support.sh
.github/check_info_nodes_support.sh

- name: Create GitHub Package Release
if: ${{ github.event_name == 'push' && (contains(fromJSON('["master", "develop"]'), github.ref_name) || startsWith(github.ref, 'refs/tags/')) }}
uses: softprops/action-gh-release@v2
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ if (MRDOCS_BUILD_TESTS)
endif ()
target_compile_definitions(mrdocs-test PRIVATE -DMRDOCS_TEST_FILES_DIR="${CMAKE_CURRENT_SOURCE_DIR}/test-files")
add_test(NAME mrdocs-unit-tests COMMAND mrdocs-test --unit=true)
foreach (testgenerator IN ITEMS xml adoc)
foreach (testgenerator IN ITEMS xml adoc html)
add_test(NAME mrdocs-golden-tests-${testgenerator}
COMMAND
mrdocs-test
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{{>template-head symbol.template}}

concept {{>declarator-id symbol}} = {{symbol.constraint}}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{{!-- concept --}}
<div id="{{symbol.id}}">
<div>
<h2>{{>nested-name-specifier symbol=symbol.parent includeNamespace=true}}{{symbol.name}}</h2>
{{symbol.doc.brief}}
</div>
<div>
<h3>Synopsis</h3>
<div>
<code>
{{>source dcl=(primary_location symbol)}}
</code>
</div>
<pre class="source-code cpp">
{{>signature/concept symbol=symbol}};
</pre>
</div>
{{#if symbol.doc.description}}
<div>
<h3>Description</h3>
{{symbol.doc.description}}
</div>
{{/if}}
{{#if symbol.doc.see}}
<div>
<h3>See Also</h3>
{{#each symbol.doc.see}}
<p>{{.}}</p>
{{/each}}
</div>
{{/if}}
</div>
Loading
Loading