card-mod-markdown 0.13.2 → 0.14.1
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/README.md +22 -0
- data/set/type/markdown.rb +4 -0
- metadata +20 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 29b4b4b287977f962f6c47f0297eb17de045d7f8edaeb156346c08228b071d85
|
4
|
+
data.tar.gz: 4b6cc472855b61acdebf771eaf4dcfec59313b5a996307a4a2675f8e59367d48
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: da54bb3f4f9611bd785ca4c69f8b483cc119df9f8ba7225d453749f1dd1aee3469ac428ba3c69bcf28a9dc5a3dff7b3d5f63f331bb77f9c4735eceed03a43c51
|
7
|
+
data.tar.gz: f3dff65793d242837ae03c346d084e95ef3f276f810ff75e5b64ef3a49681f73047d6da20b4d698b2b7bec843712fd9fad1ebc4d142f6652105f7ddb1707900d
|
data/README.md
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
<!--
|
2
|
+
# @title README - mod: markdown
|
3
|
+
-->
|
4
|
+
# Markdown mod
|
5
|
+
|
6
|
+
Markdown is a popular plain-text syntax that can easily be converted into HTML.
|
7
|
+
Sort of an HTML shorthand.
|
8
|
+
|
9
|
+
This mod adds a Markdown cardtype, with which card editors can save content as markdown
|
10
|
+
and have that content rendered as HTML
|
11
|
+
|
12
|
+
## Sets modified
|
13
|
+
|
14
|
+
| type | content |
|
15
|
+
|:----:|:-------:|
|
16
|
+
| Markdown | plain text in Markdown syntax|
|
17
|
+
|
18
|
+
## Nests
|
19
|
+
|
20
|
+
Card nest syntax can be used within Markdown. Everything inside double curly brackets
|
21
|
+
(`{{ }}`) is ignored by the markdown processor, so any nest syntax that conflicts with
|
22
|
+
markdown syntax (like the `*` in `{{*title}}`) doesn't have be escaped.
|
data/set/type/markdown.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: card-mod-markdown
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.14.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ethan McCutchen
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2022-01-04 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: card
|
@@ -18,14 +18,28 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - '='
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 1.
|
21
|
+
version: 1.104.1
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
25
|
requirements:
|
26
26
|
- - '='
|
27
27
|
- !ruby/object:Gem::Version
|
28
|
-
version: 1.
|
28
|
+
version: 1.104.1
|
29
|
+
- !ruby/object:Gem::Dependency
|
30
|
+
name: card-mod-ace_editor
|
31
|
+
requirement: !ruby/object:Gem::Requirement
|
32
|
+
requirements:
|
33
|
+
- - '='
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: 0.14.1
|
36
|
+
type: :runtime
|
37
|
+
prerelease: false
|
38
|
+
version_requirements: !ruby/object:Gem::Requirement
|
39
|
+
requirements:
|
40
|
+
- - '='
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: 0.14.1
|
29
43
|
- !ruby/object:Gem::Dependency
|
30
44
|
name: kramdown
|
31
45
|
requirement: !ruby/object:Gem::Requirement
|
@@ -47,6 +61,7 @@ executables: []
|
|
47
61
|
extensions: []
|
48
62
|
extra_rdoc_files: []
|
49
63
|
files:
|
64
|
+
- README.md
|
50
65
|
- db/migrate_cards/20150116220621_add_markdown_type.rb
|
51
66
|
- set/type/markdown.rb
|
52
67
|
homepage: https://decko.org
|
@@ -74,7 +89,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
74
89
|
- !ruby/object:Gem::Version
|
75
90
|
version: '0'
|
76
91
|
requirements: []
|
77
|
-
rubygems_version: 3.
|
92
|
+
rubygems_version: 3.2.15
|
78
93
|
signing_key:
|
79
94
|
specification_version: 4
|
80
95
|
summary: markdown support for decko
|