-
Notifications
You must be signed in to change notification settings - Fork 32
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
Add String method to strip <br> tags from markdown #388
Conversation
This broke the build on the UpdateThe failure is Update 2Just to see, I took out the calls to The builds seem to have been failing for a while, but the commit on master merging the PR that broke the build is in master, and the build succeeds. I'm super confused. |
693e8ed
to
1aec344
Compare
9476907
to
1f45406
Compare
@thenickcox i am so sorry for the delay, mind a rebase off of master? |
@samccone No problem about the delay. Although because it's been so long, I just read through this issue and the related ones to remind myself what was happening, and somehow the diff for this commit is just |
@thenickcox if you rebase off of master and repush the tests will run :) |
@samccone Looking back at the discussion, I seem to recall my fix involving a regex to strip out |
@thenickcox Would it ok for me to close this or are you planning to work on this still? |
@jdaudier Be my guest!! Thanks! |
@jdaudier Oops. Misread. I thought you meant you were going to work on it. Sure, go ahead and close. Hopefully I'll get some time down the road and I'll reopen. |
Currently, the docs are being compiled with the markdown parsing adding a
<br>
tag for every new line. This will have one of two effects. Either a) The docs are formatted with line breaks added for readability in the Markdown and the compiled HTML becomes cluttered with extraneous tags, and the layout styling is messed up, or b) The docs can be written without line breaks to preserve the intended page layout, but this creates long paragraphs, sacrificing readability.That's not a choice we should have to make!
Excerpt of docs before this PR:
After:
Closes #384.