-
Notifications
You must be signed in to change notification settings - Fork 391
Closed
Labels
bugSomething isn't workingSomething isn't workingpublishing-confluenceConfluence publishing of documents and projectsConfluence publishing of documents and projects
Milestone
Description
For an executable code chunk like
```{python}
#| label: tbl-planets
#| tbl-cap: Planets
from IPython.display import Markdown
from tabulate import tabulate
table = [["Sun",696000,1989100000],
["Earth",6371,5973.6],
["Moon",1737,73.5],
["Mars",3390,641.85]]
Markdown(tabulate(
table,
headers=["Planet","R (km)", "mass (x 10^29 kg)"]
))
```
python is not passed to the Writer
function CodeBlockConfluence(codeValue, attributes)
local languageValue = attributes and attributes.class or ''
dump(attributes, 'attributes')
dump(codeValue, 'codeValue')
dump(languageValue, 'languageValue')
languageValue markdown
attributes [("id",""),("class","markdown cell-code")]
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingpublishing-confluenceConfluence publishing of documents and projectsConfluence publishing of documents and projects