thelfer / tfel

Main repository of TFEL/MFront project
https://thelfer.github.io/tfel/web/index.html
Other
88 stars 40 forks source link

The @UseQt keyword is not mentioned in the MaterialLaw keywords help page #526

Closed maxence-wz closed 8 months ago

maxence-wz commented 8 months ago

https://thelfer.github.io/tfel/web/MaterialLaw-keywords.html

thelfer commented 8 months ago

To update the pages associated with the keywords of the DSLs:

$ for dsl in $(mfront --list-dsl | awk '{print $2}'|grep -v Parser|grep -v DSL); do mfront --help-keywords=$dsl &> $dsl-keywords.md; done

To update the menu in mfront-template.html:

$ for dsl in $(mfront --list-dsl | awk '{print $2}'|grep -v Parser|grep -v DSL); do echo "<li><a href=\"$dsl-keywords.html\">$dsl</a></li>"; done