You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/posts/mfm.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ I'm pretty sure that I'll be adding more features at some point in the future, s
38
38
For example, the following Markdown...
39
39
40
40
```markdown
41
-
![[Test]](https://ethmarks.github.io)
41
+
![[Test]](https://example.com)
42
42
```
43
43
44
44
...parses into the following HTML.
@@ -47,7 +47,7 @@ For example, the following Markdown...
47
47
<iframe
48
48
scrolling="no"
49
49
title="Test"
50
-
src="https://ethmarks.github.io"
50
+
src="https://example.com"
51
51
frameborder="no"
52
52
loading="lazy"
53
53
allowtransparency="true"
@@ -72,15 +72,15 @@ If the file extension of the media src is an [MP4](https://en.wikipedia.org/wiki
72
72
The default behavior is for it to be parsed into a video element that does not loop, is not muted, and requires user input to start playback. For example, the following Markdown...
@@ -91,15 +91,15 @@ The default behavior is for it to be parsed into a video element that does not l
91
91
The MFM animation syntax is an override of the video syntax. The difference is that the text in the square brackets is prefixed with "GIF ". The "GIF" prefix will be removed from the final alt text. It is then parsed into a video element that loops, is muted, and autoplays. For example, the following Markdown...
0 commit comments