-
Notifications
You must be signed in to change notification settings - Fork 287
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
links replacing # with h1 due to markdown #100
Comments
I just noticed the comment in the code
I guess this is a known issue |
EDIT: SCRATCH THAT I THINK I MISUNDERSTOOD HOW THE CODE WORKS WHEN GENERATING HEADERS I'm no expert on regex, but I tested this out and it works.
It tests that there's no Here's a test case |
Hi roskelld,
This code works in filtering # in url links, however it also breaks the detection of regular headings on page markdown articles. Here's an alternative regex, that works in both cases:
This one assumes that a # preceding a url is directly followed by a / which makes sense in the cms.js environment (e.g. /#/pages/somearticle) |
Great, it works just find... You may can propose it as pull request ? |
I was looking for a solution to add blog posts to my GitHub site and here we are.
When testing out my own code and the hosted demo code I noticed that URLs with a
#
(so, all hosted pages) are replaced by<h1>
in the rendered URL.Example:
Go to the demo post
http://chris-diana.com/cms.js/demo/#/posts/2017-08-20-another-example-post
The link in the body text goes to:
http://chris-diana.com/cms.js/demo/<h1>
I'm guessing that the markdown https://github.com/chrisdiana/cms.js/blob/develop/src/markdown.js is picking up the
#
as a heading.The text was updated successfully, but these errors were encountered: