表格里面有办法加入有序列表和无序列表吗

表格里面是不是不能支持加入任务列表和无序列表之类的,我尝试了一下只会显示-空格,没有办法转变成原点

无序列表
  • hello
  • world
<ul><li>hello</li><li>world</li></ul>
有序列表
  1. hello
  2. world
<ol><li>hello</li><li>world</li></ol>
任务列表
  • hello
  • world
<ul><li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox">hello</li><li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" checked>world</li></ul>
1 个赞

真的可以,就在前面加上一些字符就好了,感谢大佬,谢谢!