Merge branch 'fix/markdown-blockquote' into 'master'

Fix bug with Markdown-Blockquote function

See merge request idotj/mastodon-embed-feed-timeline!21
This commit is contained in:
i.j 2023-09-06 09:49:03 +00:00
commit d00dfdf5fe
No known key found for this signature in database
4 changed files with 7 additions and 4 deletions

View File

@ -1,3 +1,6 @@
v3.9.1 - 06/09/2023
- Fix bug with Markdown-Blockquote function
v3.9.0 - 02/09/2023 v3.9.0 - 02/09/2023
- Fix Content Security Policy - Fix Content Security Policy
- Fix account name shown - Fix account name shown

View File

@ -1,4 +1,4 @@
/* Mastodon embed feed timeline v3.9.0 */ /* Mastodon embed feed timeline v3.9.1 */
/* More info at: */ /* More info at: */
/* https://gitlab.com/idotj/mastodon-embed-feed-timeline */ /* https://gitlab.com/idotj/mastodon-embed-feed-timeline */

View File

@ -1,5 +1,5 @@
/** /**
* Mastodon embed feed timeline v3.9.0 * Mastodon embed feed timeline v3.9.1
* More info at: * More info at:
* https://gitlab.com/idotj/mastodon-embed-feed-timeline * https://gitlab.com/idotj/mastodon-embed-feed-timeline
*/ */
@ -575,7 +575,7 @@ MastodonApi.prototype.formatTootText = function (c) {
"<p>&gt;", "<p>&gt;",
"</p>", "</p>",
"<blockquote><p>", "<blockquote><p>",
"</blockquote></p>" "</p></blockquote>"
); );
} }

File diff suppressed because one or more lines are too long