Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Change config used by Markdown tests to reflect actual use. | Harald Eilertsen | 2024-10-12 | 1 | -0/+8 |
| | | | | | | | This makes the configuration used align better with how it is being used in the mdpost addon. This also reveals some issues that are less than ideal for Markdown posts. The relevant test cases have been adjusted to pass with the new config, but have been commented. | ||||
* | markdown: Don't link URLs in code blocks. | Harald Eilertsen | 2024-09-30 | 1 | -1/+13 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When passing a content throught the `markdown_to_bb` function to convert any markdown in the content, any recognized URLs in the content would be converted to BBCode links as a post processing step after the main conversion. After commit a1ccacb825edac6ae36e5db4f62ebfe7aeaebe9f this did no longer consider content within code blocks, and would thus convert them as to BBCode links. Example: The following content [code] example url: https://example.com [/code] Would be converted to [code] example url: [url=https://example.com]https://example.com[/url] [/code] Prior to commit a1ccacb825edac6ae36e5db4f62ebfe7aeaebe9f, code blocks would be protected, so this would not happen. This patch removes the post processing step for converting plain URLs to links completely from this routine. This functionality is in any case covered in the actual BBCode parser where it belongs. This will have some other side effects as well, such as images and links created using Markdown, will not be converted to [zmg] or [zrl] tags where that would be done automatically before. If you intend to use a [zrl] or [zmg] tag, you now need to do so explicitly. | ||||
* | fix html2bbcode table and add test | Mario | 2024-08-02 | 1 | -0/+4 |
| | |||||
* | Upgrade test framework to PHPUnit 10.5 | Harald Eilertsen | 2024-05-27 | 1 | -3/+3 |
| | |||||
* | remove p tags from li. otherwise we will get unwanted new lines in the list. ↵ | Mario | 2024-05-08 | 1 | -0/+4 |
| | | | | add test. | ||||
* | add tests | Mario | 2024-05-07 | 1 | -0/+8 |
| | |||||
* | also deal with ol and ul tags earlier and add test for double nested lists | Mario | 2024-05-03 | 1 | -0/+8 |
| | |||||
* | deal with li tags earlier seems to be more straight forward also add test ↵ | Mario | 2024-05-03 | 1 | -0/+8 |
| | | | | for li without closing tag | ||||
* | fix nested lists by parsing li before ul or ol and add a test | Mario | 2024-05-03 | 1 | -0/+8 |
| | |||||
* | more remove additional linebreaks after block element plus test | Mario | 2024-03-25 | 1 | -0/+4 |
| | |||||
* | make sure we preserve linefeeds in the actual content of lists and tables ↵ | Mario | 2024-03-24 | 1 | -0/+12 |
| | | | | also add tests | ||||
* | adjust tests after recent commit | Mario | 2024-03-21 | 1 | -3/+3 |
| | |||||
* | deal with wihitespace issues in tables and lists and add tests | Mario | 2024-03-20 | 1 | -0/+12 |
| | |||||
* | fix reshares from streams loosing image | Mario | 2024-03-20 | 1 | -0/+4 |
| | |||||
* | fix unterminated entity reference error when dealing with domxpath and add a ↵ | Mario | 2024-03-06 | 1 | -0/+4 |
| | | | | test | ||||
* | Add some beginning tests for bbcode, and a bit of refactoring | Harald Eilertsen | 2024-03-01 | 1 | -0/+138 |
| | |||||
* | Add test for a paragraph with a mention and some text | Mario | 2024-02-13 | 1 | -0/+4 |
| | |||||
* | Fix: Keep indentation in html and md code blocks. | Harald Eilertsen | 2024-02-07 | 1 | -0/+8 |
| | | | | | | | Moves the logic for unwrapping broken lines in html (and Markdown) to the node processing, instead of doing it over the full html content. This allows us to skip if for code blocks (aka `<code>` elements within `<pre>` elements). | ||||
* | Fix convert code blocs from markdown/html to bbcode | Harald Eilertsen | 2024-02-06 | 1 | -0/+4 |
| | |||||
* | Fix image with alt text for html/md to bbcode | Harald Eilertsen | 2024-02-06 | 1 | -0/+46 |