qiita-markdown 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 599a15f85c80c45cd58e16d60a6eece114b886ac65c5f6f4767d1f727963a016
4
- data.tar.gz: 5facc5a1697e94cd7fe5e49363aa363cd248ab7f1aed2fe1ddf5fdd695b19c41
3
+ metadata.gz: 43439f5ff035232b9d8b129e7abe200e430d5df4a3130db8e2c74e2b0cf8ddf2
4
+ data.tar.gz: d92793576cb2fca8201049baeb4ca21f7caaa90e8e3b381325714d17b09463fe
5
5
  SHA512:
6
- metadata.gz: 4296d111d0b855927682caaaaf892f13f271414bb4a542a7a9345027398ccb2de1efa3c1fae9307759d03c2b2b0c8323560f5d665fb7a7abb80f658009c14f44
7
- data.tar.gz: 3bbe75b03f5676dece5efbf1a29b5477cebc28184c5e384c098aa7be69de4162d89dfeac4c3ab52eb2db7374185262eedcb67d8a0b0b5252ba29134b4e422ccd
6
+ metadata.gz: 31288999c19624a922be45857a6c80248f7756e17f0fd45e7c734cadd2871fce408607dfcbda94d1797f23ce3f0d084ccf5bff387061daf69c82d8c95ab199a0
7
+ data.tar.gz: 6793705bc13ef157cb4055c8696b1fda3f18c658e4866beeefa593f2b34becd333b3893d3a46159542de1991246a5652ad0d46f735a1e9acaf14ee6878f49d16
@@ -16,7 +16,7 @@ jobs:
16
16
  steps:
17
17
  - name: Get branch names
18
18
  id: branch-name
19
- uses: tj-actions/branch-names@v4.9
19
+ uses: tj-actions/branch-names@v7.0.7
20
20
  - uses: actions/checkout@v3
21
21
  - uses: ruby/setup-ruby@v1
22
22
  with:
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  ## Unreleased
2
2
 
3
+ ## 1.1.1
4
+
5
+ - Allow open attribute on details
6
+ - Bump tj-actions/branch-names from 4.9 to 7.0.7
7
+
3
8
  ## 1.1.0
4
9
 
5
10
  - Add uri to requiring libraries
@@ -63,6 +63,9 @@ module Qiita
63
63
  "th" => [
64
64
  "style",
65
65
  ],
66
+ "details" => [
67
+ "open",
68
+ ],
66
69
  "video" => %w[
67
70
  src
68
71
  autoplay
@@ -16,6 +16,7 @@ module Qiita
16
16
  "blockquote" => %w[cite] + Embed::Tweet::ATTRIBUTES,
17
17
  "code" => %w[data-metadata],
18
18
  "div" => %w[class data-type data-metadata],
19
+ "details" => %w[open],
19
20
  "font" => %w[color],
20
21
  "h1" => %w[id],
21
22
  "h2" => %w[id],
@@ -1,5 +1,5 @@
1
1
  module Qiita
2
2
  module Markdown
3
- VERSION = "1.1.0"
3
+ VERSION = "1.1.1"
4
4
  end
5
5
  end
@@ -1067,6 +1067,11 @@ describe Qiita::Markdown::Processor do
1067
1067
  puts "Hello, World"
1068
1068
  ```
1069
1069
  </div></details>
1070
+
1071
+ <details open close><summary>Folding sample2</summary>
1072
+
1073
+ it allows open attributes
1074
+ </details>
1070
1075
  MARKDOWN
1071
1076
  end
1072
1077
 
@@ -1076,6 +1081,9 @@ describe Qiita::Markdown::Processor do
1076
1081
  <div class="code-frame" data-lang="rb"><div class="highlight"><pre class="codehilite"><code><span class="nb">puts</span> <span class="s2">"Hello, World"</span>
1077
1082
  </code></pre></div></div>
1078
1083
  </div></details>
1084
+ <details open><summary>Folding sample2</summary>
1085
+ <p>it allows open attributes</p>
1086
+ </details>
1079
1087
  HTML
1080
1088
  end
1081
1089
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: qiita-markdown
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryo Nakamura
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-30 00:00:00.000000000 Z
11
+ date: 2024-03-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable
@@ -122,7 +122,7 @@ dependencies:
122
122
  - - ">="
123
123
  - !ruby/object:Gem::Version
124
124
  version: '0'
125
- description:
125
+ description:
126
126
  email:
127
127
  - r7kamura@gmail.com
128
128
  executables: []
@@ -191,7 +191,7 @@ licenses:
191
191
  - MIT
192
192
  metadata:
193
193
  rubygems_mfa_required: 'true'
194
- post_install_message:
194
+ post_install_message:
195
195
  rdoc_options: []
196
196
  require_paths:
197
197
  - lib
@@ -206,8 +206,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
206
206
  - !ruby/object:Gem::Version
207
207
  version: '0'
208
208
  requirements: []
209
- rubygems_version: 3.4.1
210
- signing_key:
209
+ rubygems_version: 3.2.33
210
+ signing_key:
211
211
  specification_version: 4
212
212
  summary: Qiita-specified markdown processor.
213
213
  test_files: []