-
Notifications
You must be signed in to change notification settings - Fork 124
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
Fix and merge to release 0.8.0 #110
base: master
Are you sure you want to change the base?
Commits on Jan 11, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 41dd6f7 - Browse repository at this point
Copy the full SHA 41dd6f7View commit details
Commits on Mar 31, 2015
-
Add option to add unique prefix to footnote references
Setting footnote prefix: ParsedownExtra::setFootnotePrefix( string $footnotePrefix ) This should be a string that is valid in an HTML attribute, i.e. escaped properly. Default value is blank, if this is kept blank behavior is as before. Use case in mind is for something like a blog, where you can set the prefix to something unique like a post ID. Added test_footnote_prefix() to test cases.
Robin Adrianse committedMar 31, 2015 Configuration menu - View commit details
-
Copy full SHA for a234bbe - Browse repository at this point
Copy the full SHA a234bbeView commit details
Commits on Apr 3, 2015
-
Add clearFootnotePrefix() method to reset footnote prefix
Robin Adrianse committedApr 3, 2015 Configuration menu - View commit details
-
Copy full SHA for 1ccc1c3 - Browse repository at this point
Copy the full SHA 1ccc1c3View commit details
Commits on Apr 7, 2015
-
Configuration menu - View commit details
-
Copy full SHA for b136d30 - Browse repository at this point
Copy the full SHA b136d30View commit details
Commits on May 28, 2015
-
ignores the list of voided elements when rendering markdown
Configuration menu - View commit details
-
Copy full SHA for 468ecc6 - Browse repository at this point
Copy the full SHA 468ecc6View commit details
Commits on Jun 16, 2015
-
Revamps utilization to require php >=5.4
Stabilizes library by revamping class to utilize methods from php 5.4 or greater.
Configuration menu - View commit details
-
Copy full SHA for 77d0914 - Browse repository at this point
Copy the full SHA 77d0914View commit details -
Does an extra check on valid DOMElements to make sure they have child nodes before calling recursively.
Configuration menu - View commit details
-
Copy full SHA for f20a4bc - Browse repository at this point
Copy the full SHA f20a4bcView commit details
Commits on Nov 16, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 99d2d77 - Browse repository at this point
Copy the full SHA 99d2d77View commit details
Commits on Nov 28, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 6d760db - Browse repository at this point
Copy the full SHA 6d760dbView commit details
Commits on Dec 2, 2015
-
Configuration menu - View commit details
-
Copy full SHA for e529dd5 - Browse repository at this point
Copy the full SHA e529dd5View commit details
Commits on Dec 3, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 4ab5e84 - Browse repository at this point
Copy the full SHA 4ab5e84View commit details
Commits on Dec 7, 2015
-
Add Markdown Extra in Fenced Code blocks
Previously, the 'extra' in 'Markdown Extra' was only supported in links, lists, and headings. This commits adds support for adding a class or ID to fenced code blocks.
Configuration menu - View commit details
-
Copy full SHA for 2bc41f2 - Browse repository at this point
Copy the full SHA 2bc41f2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 725d282 - Browse repository at this point
Copy the full SHA 725d282View commit details -
Configuration menu - View commit details
-
Copy full SHA for 19d5919 - Browse repository at this point
Copy the full SHA 19d5919View commit details -
Configuration menu - View commit details
-
Copy full SHA for de343b6 - Browse repository at this point
Copy the full SHA de343b6View commit details
Commits on Dec 8, 2015
-
* Move the custom class to the <pre> rather than the <code> * Add dashes in "truncated-for-brevity" * Code language is specified through 'class="language-python"' rather than 'lang="python"' * Remove newline at end of file
Configuration menu - View commit details
-
Copy full SHA for e74390a - Browse repository at this point
Copy the full SHA e74390aView commit details -
Configuration menu - View commit details
-
Copy full SHA for b14bb5b - Browse repository at this point
Copy the full SHA b14bb5bView commit details
Commits on Dec 15, 2015
-
Configuration menu - View commit details
-
Copy full SHA for d1da420 - Browse repository at this point
Copy the full SHA d1da420View commit details
Commits on Jan 20, 2016
-
Updated the attribute parser to handle extra attributes aside from ju…
…st a `class` and `id`. - I wanted the ability to be able to add `width` & `height` attributes to images but wasn't able to in the current state so I updated the RegEx rules and the `parseAttributeData` method. Now a user can add something like `{.test .fu #bar style="color:red; font-style:italic" data-is-cool="'tis true" lang=en_us}` and it'll render out these attributes `class="test fu" id="bar" style="color:red; font-style:italic" data-is-cool="'tis true" lang="en_us"`. - I also added the `inlineImage` method so attributes like `width` & `height` can be added.
Configuration menu - View commit details
-
Copy full SHA for 510de2b - Browse repository at this point
Copy the full SHA 510de2bView commit details
Commits on Jul 20, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 296185e - Browse repository at this point
Copy the full SHA 296185eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8c0231d - Browse repository at this point
Copy the full SHA 8c0231dView commit details
Commits on Jul 27, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 54a8fea - Browse repository at this point
Copy the full SHA 54a8feaView commit details
Commits on Sep 5, 2016
-
This can be used as a template for Parsedown extensions (like Parsedown Extra) to reuse Parsedown's original tests. You can either extend tests (like ParsedownExtraTest) or reuse them unchanged (like CommonMarkTest). Parsedown extensions simply have to implement their own TestParsedown class (test/TestParsedown.php) and all original tests will run with a instance of this class, rather than a instance of the original Parsedown class. This PR is a follow-up to erusev/parsedown#423, i.e. you must merge erusev/parsedown#423 first, otherwise this doesn't work.
Configuration menu - View commit details
-
Copy full SHA for 6bf54d7 - Browse repository at this point
Copy the full SHA 6bf54d7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 55d9ec7 - Browse repository at this point
Copy the full SHA 55d9ec7View commit details
Commits on Oct 9, 2016
-
Add test/CommonMarkTestWeak.php of erusev/parsedown to .travis.yml
Failing tests don't break builds on purpose, Parsedown Extra doesn't fully comply with the CommonMark specs at the moment. We should switch to test/CommonMarkTest.php of erusev/parsedown later, see erusev/parsedown#423 for details.
Configuration menu - View commit details
-
Copy full SHA for 85a3759 - Browse repository at this point
Copy the full SHA 85a3759View commit details
Commits on Oct 11, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 0e9112a - Browse repository at this point
Copy the full SHA 0e9112aView commit details
Commits on Dec 22, 2016
-
Configuration menu - View commit details
-
Copy full SHA for fee8f7f - Browse repository at this point
Copy the full SHA fee8f7fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4d553fb - Browse repository at this point
Copy the full SHA 4d553fbView commit details
Commits on Mar 14, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 7eb243b - Browse repository at this point
Copy the full SHA 7eb243bView commit details
Commits on May 26, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 222d7d0 - Browse repository at this point
Copy the full SHA 222d7d0View commit details
Commits on May 28, 2017
-
Bugfix: reset footnote count after each «text» call
Rubén Rubio committedMay 28, 2017 Configuration menu - View commit details
-
Copy full SHA for 4d673d0 - Browse repository at this point
Copy the full SHA 4d673d0View commit details
Commits on Jun 18, 2017
-
Configuration menu - View commit details
-
Copy full SHA for f8d7a57 - Browse repository at this point
Copy the full SHA f8d7a57View commit details -
Configuration menu - View commit details
-
Copy full SHA for d7f50a0 - Browse repository at this point
Copy the full SHA d7f50a0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 15f29db - Browse repository at this point
Copy the full SHA 15f29dbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7c56a09 - Browse repository at this point
Copy the full SHA 7c56a09View commit details -
Configuration menu - View commit details
-
Copy full SHA for 951aeb9 - Browse repository at this point
Copy the full SHA 951aeb9View commit details -
Merge remote-tracking branch 'theOneWhoKnocks/feature/attribute-parsi…
…ng' into fix/merge
Configuration menu - View commit details
-
Copy full SHA for 23a5903 - Browse repository at this point
Copy the full SHA 23a5903View commit details -
Configuration menu - View commit details
-
Copy full SHA for d9e3770 - Browse repository at this point
Copy the full SHA d9e3770View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0b659f3 - Browse repository at this point
Copy the full SHA 0b659f3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3f5560d - Browse repository at this point
Copy the full SHA 3f5560dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8f86bb0 - Browse repository at this point
Copy the full SHA 8f86bb0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5bac3fb - Browse repository at this point
Copy the full SHA 5bac3fbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 219fea8 - Browse repository at this point
Copy the full SHA 219fea8View commit details -
Configuration menu - View commit details
-
Copy full SHA for fd55f5d - Browse repository at this point
Copy the full SHA fd55f5dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7a7b257 - Browse repository at this point
Copy the full SHA 7a7b257View commit details -
Merge remote-tracking branch 'rubenrubiob/bugfix/reset-footnote-count…
…' into fix/merge
Configuration menu - View commit details
-
Copy full SHA for 38bf3d7 - Browse repository at this point
Copy the full SHA 38bf3d7View commit details -
Configuration menu - View commit details
-
Copy full SHA for beaf933 - Browse repository at this point
Copy the full SHA beaf933View commit details -
Configuration menu - View commit details
-
Copy full SHA for a09951e - Browse repository at this point
Copy the full SHA a09951eView commit details -
Configuration menu - View commit details
-
Copy full SHA for eadf591 - Browse repository at this point
Copy the full SHA eadf591View commit details -
Configuration menu - View commit details
-
Copy full SHA for 761297d - Browse repository at this point
Copy the full SHA 761297dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 11973fc - Browse repository at this point
Copy the full SHA 11973fcView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8be735c - Browse repository at this point
Copy the full SHA 8be735cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9d1ce09 - Browse repository at this point
Copy the full SHA 9d1ce09View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7379035 - Browse repository at this point
Copy the full SHA 7379035View commit details -
Configuration menu - View commit details
-
Copy full SHA for 77a07ed - Browse repository at this point
Copy the full SHA 77a07edView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7f8f271 - Browse repository at this point
Copy the full SHA 7f8f271View commit details -
Configuration menu - View commit details
-
Copy full SHA for b05f432 - Browse repository at this point
Copy the full SHA b05f432View commit details -
Configuration menu - View commit details
-
Copy full SHA for 777ab54 - Browse repository at this point
Copy the full SHA 777ab54View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6861569 - Browse repository at this point
Copy the full SHA 6861569View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0ff7598 - Browse repository at this point
Copy the full SHA 0ff7598View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3bf5760 - Browse repository at this point
Copy the full SHA 3bf5760View commit details -
Configuration menu - View commit details
-
Copy full SHA for 09021b1 - Browse repository at this point
Copy the full SHA 09021b1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5ff4422 - Browse repository at this point
Copy the full SHA 5ff4422View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8ad590d - Browse repository at this point
Copy the full SHA 8ad590dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 49e2a77 - Browse repository at this point
Copy the full SHA 49e2a77View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6bffdde - Browse repository at this point
Copy the full SHA 6bffddeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 43bb158 - Browse repository at this point
Copy the full SHA 43bb158View commit details -
Configuration menu - View commit details
-
Copy full SHA for 329a35a - Browse repository at this point
Copy the full SHA 329a35aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 49e081c - Browse repository at this point
Copy the full SHA 49e081cView commit details
Commits on Jun 26, 2017
-
Configuration menu - View commit details
-
Copy full SHA for 0f9eeaf - Browse repository at this point
Copy the full SHA 0f9eeafView commit details
Commits on Jul 2, 2017
-
Configuration menu - View commit details
-
Copy full SHA for f409238 - Browse repository at this point
Copy the full SHA f409238View commit details -
Configuration menu - View commit details
-
Copy full SHA for f7718ba - Browse repository at this point
Copy the full SHA f7718baView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9d7cffd - Browse repository at this point
Copy the full SHA 9d7cffdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6be6b62 - Browse repository at this point
Copy the full SHA 6be6b62View commit details -
Configuration menu - View commit details
-
Copy full SHA for cb4731f - Browse repository at this point
Copy the full SHA cb4731fView commit details -
Configuration menu - View commit details
-
Copy full SHA for d5c4a73 - Browse repository at this point
Copy the full SHA d5c4a73View commit details -
Configuration menu - View commit details
-
Copy full SHA for 16e729a - Browse repository at this point
Copy the full SHA 16e729aView commit details -
Configuration menu - View commit details
-
Copy full SHA for b8e2aef - Browse repository at this point
Copy the full SHA b8e2aefView commit details -
Configuration menu - View commit details
-
Copy full SHA for b0c512e - Browse repository at this point
Copy the full SHA b0c512eView commit details