markleft 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/exe/markleft +1 -1
- data/lib/markleft/version.rb +1 -1
- data/markleft-0.1.1.gem +0 -0
- data/sample.html +1 -1
- data/sample.md +75 -2
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1c0c05582686415cb88d442076b8e894b8354b8b09044f797f37f70d12914c30
|
4
|
+
data.tar.gz: c5629cfea579afa7bae6477dc3c9202dcf643a14259c564f18a075cd077047bc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c8c584cd46c4a9d5f3e880295aac8e010e2d3f964109e1e88c78bdd4ebb95f018bc139018b96ac4ad99659d2f05c83c7ddaf3802bf25a1194f5a16040d2c957d
|
7
|
+
data.tar.gz: fc98229f257308acf4d19f1c9f9e2d1ec05f865403c9f2550cac4b9a505774396ad815425133b16ed2f9df987bd29a12c2f029a49d00d0b60cd1613beb7e964a
|
data/exe/markleft
CHANGED
data/lib/markleft/version.rb
CHANGED
data/markleft-0.1.1.gem
ADDED
Binary file
|
data/sample.html
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
# Heading 1## Heading 2### Heading 3#### Heading 4##### Heading 5###### Heading 6---<b>**Bold text**</b><i>*Italic text*</i><b>***Bold and italic text***</b>~~Strikethrough text~~> Blockquote- Unordered list item 1- Unordered list item 2- Nested unordered list item1. Ordered list item 12. Ordered list item 21. Nested ordered list item`Inline code````ruby# Code block with syntax highlightingdef hello_worldputs "Hello, world!"end```[Link to GitHub](https://github.com)| Header 1 | Header 2 || -------- | -------- || Cell 1 | Cell 2 || Cell 3 | Cell 4 |---- [ ] Task list item 1- [x] Task list item 2---Footnote reference[^1].[^1]: Footnote text.---This is a sample text with a [^2] superscript.[^2]: Superscript text.---<details><summary>Expandable section</summary>This is the content of the expandable section.</details>---
|
data/sample.md
CHANGED
@@ -1,2 +1,75 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
# Heading 1
|
2
|
+
|
3
|
+
## Heading 2
|
4
|
+
|
5
|
+
### Heading 3
|
6
|
+
|
7
|
+
#### Heading 4
|
8
|
+
|
9
|
+
##### Heading 5
|
10
|
+
|
11
|
+
###### Heading 6
|
12
|
+
|
13
|
+
---
|
14
|
+
|
15
|
+
**Bold text**
|
16
|
+
|
17
|
+
*Italic text*
|
18
|
+
|
19
|
+
***Bold and italic text***
|
20
|
+
|
21
|
+
~~Strikethrough text~~
|
22
|
+
|
23
|
+
> Blockquote
|
24
|
+
|
25
|
+
- Unordered list item 1
|
26
|
+
- Unordered list item 2
|
27
|
+
- Nested unordered list item
|
28
|
+
|
29
|
+
1. Ordered list item 1
|
30
|
+
2. Ordered list item 2
|
31
|
+
1. Nested ordered list item
|
32
|
+
|
33
|
+
`Inline code`
|
34
|
+
|
35
|
+
```ruby
|
36
|
+
# Code block with syntax highlighting
|
37
|
+
def hello_world
|
38
|
+
puts "Hello, world!"
|
39
|
+
end
|
40
|
+
```
|
41
|
+
|
42
|
+
[Link to GitHub](https://github.com)
|
43
|
+
|
44
|
+

|
45
|
+
|
46
|
+
| Header 1 | Header 2 |
|
47
|
+
| -------- | -------- |
|
48
|
+
| Cell 1 | Cell 2 |
|
49
|
+
| Cell 3 | Cell 4 |
|
50
|
+
|
51
|
+
---
|
52
|
+
|
53
|
+
- [ ] Task list item 1
|
54
|
+
- [x] Task list item 2
|
55
|
+
|
56
|
+
---
|
57
|
+
|
58
|
+
Footnote reference[^1].
|
59
|
+
|
60
|
+
[^1]: Footnote text.
|
61
|
+
|
62
|
+
---
|
63
|
+
|
64
|
+
This is a sample text with a [^2] superscript.
|
65
|
+
|
66
|
+
[^2]: Superscript text.
|
67
|
+
|
68
|
+
---
|
69
|
+
|
70
|
+
<details>
|
71
|
+
<summary>Expandable section</summary>
|
72
|
+
This is the content of the expandable section.
|
73
|
+
</details>
|
74
|
+
|
75
|
+
---
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: markleft
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- greeenboi
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-02-
|
11
|
+
date: 2025-02-12 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: MarkLeft is a powerful and flexible tool designed to extend the capabilities
|
14
14
|
of traditional Markdown-to-HTML compilers. It introduces additional syntax and features
|
@@ -34,6 +34,7 @@ files:
|
|
34
34
|
- exe/markleft
|
35
35
|
- lib/markleft.rb
|
36
36
|
- lib/markleft/version.rb
|
37
|
+
- markleft-0.1.1.gem
|
37
38
|
- sample.html
|
38
39
|
- sample.md
|
39
40
|
- sig/markleft.rbs
|