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.
1 parent 59118cd commit 901c1b3Copy full SHA for 901c1b3
lib/html_parser.dart
@@ -730,6 +730,9 @@ class HtmlParser extends StatelessWidget {
730
}
731
} else if (tree.style.display == Display.LIST_ITEM && tree.style.listStyleType != null) {
732
switch (tree.style.listStyleType!) {
733
+ case ListStyleType.NONE:
734
+ tree.style.markerContent = '';
735
+ break;
736
case ListStyleType.CIRCLE:
737
tree.style.markerContent = '○';
738
break;
lib/style.dart
@@ -530,6 +530,7 @@ enum ListStyleType {
530
LOWER_ROMAN,
531
UPPER_ROMAN,
532
SQUARE,
533
+ NONE,
534
535
536
enum ListStylePosition {
0 commit comments