We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently there is no way to generate nested HTML list. See also: piroor/treestyletab#3618
A nested list is copied as:
<ul> <li><a href="..."></a> <ul> <li><a href="..."></a> <ul> <li><a href="..."></a></li> </ul> </li> </ul> </li> </ul>
A flat list is copied as:
<ul> <li><a href="..."></a></li> <li><a href="..."></a></li> <li><a href="..."></a></li> </ul>
The text was updated successfully, but these errors were encountered:
An idea of the syntax to support such nested lists:
%RT%%PREFIX(<ul>%EOL%)%%SUFFIX(</ul>%EOL%)%<li><a href="%URL_HTMLIFIED%">%TITLE_HTMLIFIED%</a>%CHILDREN%</li>%EOL%
%EOL%%CHILDREN% will be added to the end of the definition automatically if the rule does not contain %CHILDREN%.
%EOL%%CHILDREN%
%CHILDREN%
Sorry, something went wrong.
No branches or pull requests
Short description
Currently there is no way to generate nested HTML list. See also: piroor/treestyletab#3618
Steps to reproduce
Expected result
A nested list is copied as:
Actual result
A flat list is copied as:
Environment
The text was updated successfully, but these errors were encountered: