We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have tried this in Xidel, but the first paragraph is always missing
E.g. markdown:parse("xx") becomes <body></body>
markdown:parse("xx")
<body></body>
* a * b * c
becomes <body></body>, too
But
a b c
becomes <body><p>b</p><p>c</p></body>
<body><p>b</p><p>c</p></body>
And
x * a * b * c
becomes
<body><ul><li> a </li><li> b </li><li> c </li></ul></body>
Is this an issue with Xidel or the module? I had to replace xquery version "3.0"; with xquery version "3.1"; and util:parse-html with x:parse-html
xquery version "3.0";
xquery version "3.1";
util:parse-html
x:parse-html
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have tried this in Xidel, but the first paragraph is always missing
E.g.
markdown:parse("xx")
becomes<body></body>
becomes
<body></body>
, tooBut
becomes
<body><p>b</p><p>c</p></body>
And
becomes
Is this an issue with Xidel or the module? I had to replace
xquery version "3.0";
withxquery version "3.1";
andutil:parse-html
withx:parse-html
The text was updated successfully, but these errors were encountered: