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 +4 -4
- data/README.md +12 -2
- data/lib/jekyll-stepper/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 25d6c67d2b8d64123e2b44d4b37e90d077f1cd5dea5f7ba60057fbc9b8e42a63
|
|
4
|
+
data.tar.gz: 67190bff1df344c4eeda9bb655c9dd7593a772a6d0315f89535e2d637ecb3c16
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
|
|
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:
|