neo4j-documentation / asciidoctor-jupyter

A Jupyter converter for Asciidoctor.js. Write your Notebook in AsciiDoc!
16 stars 1 forks source link

Error dd.hasText when description items only have a block #24

Closed ggrossetie closed 11 months ago

ggrossetie commented 11 months ago
*Basic Matrix Creation::
[%dynamic,python]
----
import numpy as np
matrix = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
print(f"matrix={matrix}")
----