Fix broken MFM tags
ci/woodpecker/pr/woodpecker Pipeline was successful Details

not yet done: sparkle
fuck sparkle honestly
This commit is contained in:
Sol Fisher Romanoff 2022-08-01 09:40:31 +03:00
parent 7c675f1ded
commit b46fbad91e
Signed by untrusted user who does not match committer: nbsp
GPG Key ID: 9D3F2B64F2341B62
3 changed files with 14 additions and 8 deletions

View File

@ -34,7 +34,7 @@
"js-cookie": "^3.0.1",
"localforage": "1.10.0",
"marked": "^4.0.17",
"marked-mfm": "^0.4.0",
"marked-mfm": "^0.5.0",
"mfm-js": "^0.22.1",
"parse-link-header": "1.0.1",
"phoenix": "1.6.2",

View File

@ -37,11 +37,11 @@
}
._mfm_jump_ {
animation: mfm-jump 0.75 linear infinite;
animation: mfm-jump 0.75s linear infinite;
}
._mfm_bounce_ {
animation: mfm-bounce 0.75 linear infinite;
animation: mfm-bounce 0.75s linear infinite;
transform-origin: center bottom;
}
@ -67,7 +67,13 @@
font-size: 600%;
}
/* blur */
._mfm_blur_ {
filter: blur(6px);
transition: filter 0.3s
}
._mfm_blur_:hover {
filter: blur(0px);
}
._mfm_rainbow_ {
animation: mfm-rainbow 1s linear infinite;

View File

@ -7445,10 +7445,10 @@ markdown-table@^2.0.0:
dependencies:
repeat-string "^1.0.0"
marked-mfm@^0.4.0:
version "0.4.0"
resolved "https://registry.yarnpkg.com/marked-mfm/-/marked-mfm-0.4.0.tgz#d3094c42daaa57b1b0b263278633de82ebf62396"
integrity sha512-2ZdBHGOV7BFJUcQNLp/jjwEE2IT1O5d1H7cd4dGeuOBI1nivuBCv1Azt7fbRlygfUSQ2rgGtFZ1ZbrP4dRhh3A==
marked-mfm@^0.5.0:
version "0.5.0"
resolved "https://registry.yarnpkg.com/marked-mfm/-/marked-mfm-0.5.0.tgz#0632c4fa8f5044d350b3aaa771b136e5d50b4b60"
integrity sha512-nRazH80nu7gVEDeORQWCWehY3v7fofC4usKdY/d6mckxfRY4PrPNLM3iGpVedpij9ktmesWAtY7SpCLq/BxP4Q==
dependencies:
"@babel/core" "^7.18.6"
"@babel/preset-env" "^7.18.6"