jekyll-stepper 0.1.0 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7c0671026469134aa7f18902648e87a6292a1429775fe781461fce71771d9a63
4
- data.tar.gz: e7ef7b95f2934dd92d90291b792fceaf0fe951736083255143a468fd5fbf83ab
3
+ metadata.gz: 25d6c67d2b8d64123e2b44d4b37e90d077f1cd5dea5f7ba60057fbc9b8e42a63
4
+ data.tar.gz: 67190bff1df344c4eeda9bb655c9dd7593a772a6d0315f89535e2d637ecb3c16
5
5
  SHA512:
6
- metadata.gz: 22aa1374ab61abecfc81236f9c409088b313e956e6f597f84ff8a5a81c568f4e6e48bb5a235b49eef4903032c10bd75911e297227b9220fcd184949e2d231087
7
- data.tar.gz: 107fe0bc78215a87ca8f7e0b755cfe0e6c7737dbf7fdfaa63907fbb6edbf532c8d55f97c6c1c1d42d22a1f0d43d06077d141630db876518359362af0ac240d86
6
+ metadata.gz: a9e3b2473c0dd6325952226aabb5780c535c7639d7a6325afed5dc28c12c3271752a88f20d088f70e36269357de31956795f1d0238b99eb0422b4317f4b543c1
7
+ data.tar.gz: 49e64af5c8f96d29860d56e2de036f995eee10da6f460167b9b5e7ba2608e59c0e4a0ac3ce3b9b08beda9ce5568285a74ecae9d07c13fb4583b10db36f693919
data/README.md CHANGED
@@ -27,7 +27,7 @@ plugins:
27
27
 
28
28
  Use a fenced code block with `stepper` as the language identifier:
29
29
 
30
- ````markdown
30
+ `````markdown
31
31
  ````stepper
32
32
  # Step 1: First step title
33
33
 
@@ -45,7 +45,7 @@ Content for the second step, including code blocks:
45
45
 
46
46
  More content here.
47
47
  ````
48
- ````
48
+ `````
49
49
 
50
50
  ### Syntax rules
51
51
 
@@ -55,6 +55,16 @@ More content here.
55
55
  - A navigation bar with Previous/Next buttons is added automatically
56
56
  - The first step is open by default
57
57
 
58
+ ### Note for github-pages users
59
+
60
+ The `github-pages` gem enforces `safe: true` locally, which blocks non-whitelisted plugins. To preview stepper blocks during local development, prefix your command with:
61
+
62
+ ```bash
63
+ DISABLE_WHITELIST=1 bundle exec jekyll serve
64
+ ```
65
+
66
+ This is not needed when deploying via GitHub Actions.
67
+
58
68
  ## Styling
59
69
 
60
70
  The plugin generates HTML with these CSS classes:
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Jekyll
4
4
  module Stepper
5
- VERSION = "0.1.0"
5
+ VERSION = "0.1.1"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-stepper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jean-Francois Morin