-
Notifications
You must be signed in to change notification settings - Fork 57
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
Markdown output - links are [ text
instead of [text
#103
Comments
I will check this out. I suspect that the link definition in the Google doc includes the space, and Docs to Markdown takes that literally, but we should be able to correct that during conversion. |
Hi! Still having the same problem. Would love an update. Thank you! |
Can you share a document that exhibits this problem? I'd like to be able to reproduce. |
As I suspected, if the link in the doc has a leading space, the converted link will have a leading space as well. Results from a test doc:
I may fix this in a future version -- the converter is quite literal now. |
One question -- do the links still work for you? I tried this:
and it worked fine at markdownlivepreview.com. |
An issue I've noticed is that links don't output as markdown as expected:
Example passage: "Here is a link to something"
Actual markdown output:
Here is a[ link](example.com) to something
Expected markdown output:
Here is a [link](example.com) to something
The text was updated successfully, but these errors were encountered: