Update 2024-11-23 15:58 OpenBSD/amd64-t14

This commit is contained in:
c0dev0id
2024-11-23 15:58:56 +01:00
parent e42bedae7b
commit 381dec3be2
31 changed files with 5801 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
Given markdown;
# a
a
=
## b
b
-
Execute (SetexToAtx):
:SetexToAtx
Expect (convert setex-style headings to atx):
# a
# a
## b
## b
Given markdown;
a
=
b
=
c
-
d
-
Execute (SetexToAtx with range):
:1,8SetexToAtx
Expect (only convert setex headings in original range):
# a
# b
## c
d
-