Fix bug with Markdown-Blockquote function

This commit is contained in:
idotj 2023-09-06 11:47:51 +02:00
parent 92eca4daaf
commit 2141da1088
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