Replies: 1 comment
-
Think this is actually an issue with the usage of |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I am trying to import a Wordpress XML file into pelican website but it seems to produce a lot of noise so I am wondering if I does something wrong or manually correcting articles is inevitable.
So I tried the following command
Which will extract the following article from XML to HTML:
and call the convert command
which produces
which, once rendered back to HTML will end to
I found I can get rid of the
<!-- wp:paragraph -->
by using the--strip-raw
option but that does not seem right, the docstring sayswhich is not really my case. Is it expected that pandoc renders HTML comments?
But even assuming I should use the
--strip-raw
command, what about the::: wp-block-image
? I end up now with:Looks like a
<div class="something">...</div>
will be rendered to:::
which does not seem to be a known by Python-Markdown.Beta Was this translation helpful? Give feedback.
All reactions