We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This produces "requirement / text / section" (deprecated):
{% set node_type = sdoc_entity.get_type_string() %} ... node-role="{{ node_type }}"
This produces real node [NAME] as string (new up-to-date):
{% set node_type_string = sdoc_entity.get_node_type_string() %} ... show-node-type-name="{{ node_type_string }}"
This affects CSS rules in many places, such as:
sdoc-node[node-style="card"][node-role="text"], sdoc-node[node-style="card"][node-role="section"] { ... }
Need to remove references to old naming, and make the CSS independent of those parameters.
The text was updated successfully, but these errors were encountered:
mettta
No branches or pull requests
This produces "requirement / text / section" (deprecated):
This produces real node [NAME] as string (new up-to-date):
This affects CSS rules in many places, such as:
Need to remove references to old naming, and make the CSS independent of those parameters.
The text was updated successfully, but these errors were encountered: