I am using this markdown sublist, but it doesn’t render correctly.
- this is a list
- this is a sublist
dcc.Markdown('''
* This is a list
* This is a sublist
'''
```
I am using this markdown sublist, but it doesn’t render correctly.
dcc.Markdown('''
* This is a list
* This is a sublist
'''
```
Hm, I"ve used these successfully in the docs:
For some reason, it is not working for me. This is what I get with your code:
Any ideas?
Got it!
To use: from textwrap import dedent as s
so that:
dcc.Markdown(s('''
* This is a list
* This is a sublist
'''))
What about numbered lists please? they arn’ working for me:
dcc.Markdown(s(
“”"
The program will undertake the following steps in order to arrange the modules:
1) item onos
2) item two
“”"
)),