hyhyhy 0.0.5 → 0.0.6
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
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5165f6841205af261ef289965ca2e0de9f7cd9aa
|
|
4
|
+
data.tar.gz: e5e7b030925160c207514b51c887e5bbabfa0c25
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8344ac1d13bd61b9f3c5de468d8f35de20bc3054b427e87236d7378a50e5e390ba300e71de99fcd9d3b4c79294bc426a9abf0fc151d33dc1b903273c1e3e5c05
|
|
7
|
+
data.tar.gz: 80f39cb75a23909b39abdd6123d674add8cfce25eb891e5c5b0eeb2fb8a2af51bd734fa95be89adf2be0da51babe83a41dbe687ef0779795b7816dbb08243531
|
data/README.md
CHANGED
|
@@ -37,24 +37,24 @@ $ gem install hyhyhy
|
|
|
37
37
|
You can create a new project by generating structure like this. Make sure that the destination folder does not exist because it will be overwritten.
|
|
38
38
|
|
|
39
39
|
```bash
|
|
40
|
-
|
|
41
|
-
├── _assets
|
|
42
|
-
│ ├── javascripts
|
|
43
|
-
│ │ └── main.js
|
|
44
|
-
│ └── stylesheets
|
|
45
|
-
│ └── main.css
|
|
46
|
-
├── _includes
|
|
47
|
-
│ └── bower.json
|
|
48
|
-
├── _layouts
|
|
49
|
-
│ └── default.erb
|
|
50
|
-
├── _slides
|
|
51
|
-
│ ├── 1.introduction.md
|
|
52
|
-
│ ├── 2.packages.md
|
|
53
|
-
│ ├── ...
|
|
54
|
-
│ └── n.html
|
|
55
|
-
├── .bowerrc
|
|
56
|
-
├── .hyhyhy
|
|
57
|
-
└── README.md
|
|
40
|
+
my-new-presentation
|
|
41
|
+
├── _assets # Assets, own catalogs
|
|
42
|
+
│ ├── javascripts # Scripts
|
|
43
|
+
│ │ └── main.js # Core (presentation)
|
|
44
|
+
│ └── stylesheets # Styles
|
|
45
|
+
│ └── main.css # Default
|
|
46
|
+
├── _includes # Bower components
|
|
47
|
+
│ └── bower.json # Package list
|
|
48
|
+
├── _layouts # Layouts
|
|
49
|
+
│ └── default.erb # Basic template
|
|
50
|
+
├── _slides # Slides/Sections
|
|
51
|
+
│ ├── 1.introduction.md # First group
|
|
52
|
+
│ ├── 2.packages.md # Second group
|
|
53
|
+
│ ├── ... # ...
|
|
54
|
+
│ └── n.html # Last gruop
|
|
55
|
+
├── .bowerrc # Bower configure
|
|
56
|
+
├── .hyhyhy # Hyhyhy configure
|
|
57
|
+
└── README.md # Simplified guide
|
|
58
58
|
```
|
|
59
59
|
|
|
60
60
|
## Commands
|
|
@@ -114,7 +114,7 @@ $ hyhyhy --version
|
|
|
114
114
|
|
|
115
115
|
## Usage
|
|
116
116
|
|
|
117
|
-
NOT READY, YET
|
|
117
|
+
NOT READY, YET! SEE MAIN PRESENTATION...
|
|
118
118
|
|
|
119
119
|
## Configuration
|
|
120
120
|
|
|
@@ -178,27 +178,35 @@ data-hyhyhy-state: slides
|
|
|
178
178
|
<div class="background"></div>
|
|
179
179
|
|
|
180
180
|
```markup
|
|
181
|
-
|
|
181
|
+
Text before...
|
|
182
182
|
|
|
183
|
-
<div class="bullet">
|
|
184
|
-
|
|
185
|
-
|
|
183
|
+
<div class="bullet">
|
|
184
|
+
First paragraph
|
|
185
|
+
</div>
|
|
186
|
+
|
|
187
|
+
<span class="bullet">
|
|
188
|
+
Second paragraph
|
|
189
|
+
</span>
|
|
186
190
|
|
|
187
|
-
<br
|
|
191
|
+
<br />
|
|
188
192
|
|
|
189
|
-
|
|
193
|
+
Text after...
|
|
190
194
|
```
|
|
191
195
|
|
|
192
196
|
<div class="last" style="color: #000">
|
|
193
|
-
|
|
197
|
+
Text before...
|
|
198
|
+
|
|
199
|
+
<div class="bullet">
|
|
200
|
+
First paragraph
|
|
201
|
+
</div>
|
|
194
202
|
|
|
195
|
-
<
|
|
196
|
-
|
|
197
|
-
|
|
203
|
+
<span class="bullet">
|
|
204
|
+
Second paragraph
|
|
205
|
+
</span>
|
|
198
206
|
|
|
199
|
-
<br
|
|
207
|
+
<br />
|
|
200
208
|
|
|
201
|
-
|
|
209
|
+
Text after...
|
|
202
210
|
</div>
|
|
203
211
|
|
|
204
212
|
---
|
data/lib/hyhyhy/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hyhyhy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Maciej A. Czyzewski
|
|
@@ -437,8 +437,6 @@ files:
|
|
|
437
437
|
- lib/hyhyhy/structure/_includes/katex/build/katex.less.css
|
|
438
438
|
- lib/hyhyhy/structure/_includes/katex/build/katex.min.css
|
|
439
439
|
- lib/hyhyhy/structure/_includes/katex/build/katex.min.js
|
|
440
|
-
- lib/hyhyhy/structure/_includes/katex/build/katex.tar.gz
|
|
441
|
-
- lib/hyhyhy/structure/_includes/katex/build/katex.zip
|
|
442
440
|
- lib/hyhyhy/structure/_includes/katex/build/katex/README.md
|
|
443
441
|
- lib/hyhyhy/structure/_includes/katex/build/katex/fonts/KaTeX_AMS-Regular.eot
|
|
444
442
|
- lib/hyhyhy/structure/_includes/katex/build/katex/fonts/KaTeX_AMS-Regular.ttf
|
|
Binary file
|
|
Binary file
|