File tree 3 files changed +6
-2
lines changed
share/mrdocs/addons/generator/asciidoc/layouts
3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1
1
{{ #if relfileprefix }} :relfileprefix: {{ relfileprefix }} {{ /if }}
2
- [#{{ #if ( is_multipage ) }} {{ symbol.id }} {{ else }} {{ symbol.ref }} {{ /if }} ]
2
+ [#{{ sectionref }} ]
3
3
4
4
= {{ #if symbol.name }} {{> nested-name-specifier symbol =symbol.parent includeNamespace =true }}{{ symbol.name }} {{ else }} Unnamed overload set{{ /if }}
5
5
Original file line number Diff line number Diff line change 1
1
{{ #if relfileprefix }} :relfileprefix: {{ relfileprefix }} {{ /if }}
2
- [#{{ #if ( is_multipage ) }} {{ symbol.id }} {{ else }} {{ symbol.ref }} {{ /if }} ]
2
+ [#{{ sectionref }} ]
3
3
4
4
{{> (concat ' symbols' ' /' (lookup symbol ' kind' )) symbol =symbol }}
Original file line number Diff line number Diff line change @@ -191,6 +191,8 @@ createContext(
191
191
props.emplace_back (" relfileprefix" ,
192
192
getRelPrefix (I.Namespace .size ()));
193
193
props.emplace_back (" config" , domCorpus->config .object ());
194
+ props.emplace_back (" sectionref" ,
195
+ domCorpus.names_ .getQualified (I.id , ' -' ));
194
196
return dom::Object (std::move (props));
195
197
}
196
198
@@ -205,6 +207,8 @@ createContext(
205
207
const Info& Parent = domCorpus->get (OS.Parent );
206
208
props.emplace_back (" relfileprefix" ,
207
209
getRelPrefix (Parent.Namespace .size () + 1 ));
210
+ props.emplace_back (" sectionref" ,
211
+ domCorpus.names_ .getQualified (OS, ' -' ));
208
212
return dom::Object (std::move (props));
209
213
}
210
214
You can’t perform that action at this time.
0 commit comments