-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
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
Convert html to markdown #10
Comments
Based on the log, I guess your current formatting is called Also:
|
Hi @mhicauber Did you have success with CKEditor migration to markdown? I have a similar issue. |
The issue in this ticket was the misconfigured |
Hi @mhicauber As I understand there is no defaukt pipeline to convert html/ckeditor to markdown. |
I would also like to know how this plugin could be used to convert from CKEditor's html format to either Textile or Markdown format. I tried using the method provided by redmine_ckeditor :
But it gives poor results with textile, and really awful results with markdown. |
I did a straightforward script that converted everything in DB using pandoc from HTML to markdown + remove all HTML attributes using Lua filter, for example, images still have it. the result is more or less good, except for tables which broken, but we have no many of them. conversation to commonmark is much better as it is partly support HTML, so tables is fine., but redmine_visual_editor plugging does not support commonmark yet, so I use redcarpet. |
Thanks for the hint @rtyshyk. Would you care to share your conversion script ? Using the command line I shared above to convert from html to Textile, some formatting was kept : but some was lost :
|
It is php app, I was expecting to use it as a webserver for redmine_format, and do something complicated... but then just decided to do changes directly in db and keep in simple... To convert it use To see sources |
It seems that your server doesn't allow unauthenticated access :
If the code is not too long, maybe you could post it here, as it is relevant to this issue's topic. |
@sylvainfaivre I updated comment above with proper image name #10 (comment) |
I was using the ckeditor plugin for redmine (as I was using a really old redmine version, that didn't have any rich text capabilities at the time. Now that I've switch to last redmine version, I'd like to stick to native markdown syntax.
So i want to transform all this html stored content to markdown.
I've used following config, but I'm having an error
Any idea what might be wrong ?
The text was updated successfully, but these errors were encountered: