You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I’m trying to customize the generated HTML titles for my .NET assembly documentation using DocFX. Specifically, I want to include the parent class name before the property name.
Right now, I’m editing title.tmpl.partial and have:
However, I’m not sure which Mustache variable or field gives me the parent class name in this context. Could you advise on the correct Mustache syntax or variable reference to use so that I can produce something like:
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello ,
I’m trying to customize the generated HTML titles for my .NET assembly documentation using DocFX. Specifically, I want to include the parent class name before the property name.
Right now, I’m editing title.tmpl.partial and have:
{{#inProperty}}Property {{name.0.value}}{{/inProperty}}
I’d like the output to look like this:
Property MyClass.MyProperty
However, I’m not sure which Mustache variable or field gives me the parent class name in this context. Could you advise on the correct Mustache syntax or variable reference to use so that I can produce something like:
{{#inProperty}}Property {{parent.name.0.value}}.{{name.0.value}}{{/inProperty}}
Any guidance would be greatly appreciated.
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions