This works:
julia> display(md"""adfa\
sdfads
""")
adfa
sdfads
Note that the two spaces wouldn’t really work in the current Julia setup as trailing white-space is not allowed.
This works:
julia> display(md"""adfa\
sdfads
""")
adfa
sdfads
Note that the two spaces wouldn’t really work in the current Julia setup as trailing white-space is not allowed.