markdown-ui 0.1.15 → 0.1.16
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/Changelog +19 -0
- data/Gemfile +3 -0
- data/README.md +37 -5
- data/TODO.md +5 -5
- data/components/elements/markdown-ui-content/lib/content/content_block.rb +19 -0
- data/components/elements/markdown-ui-content/lib/content/flag.rb +24 -0
- data/components/elements/markdown-ui-content/lib/content/header_block.rb +19 -0
- data/components/elements/markdown-ui-content/lib/content/parser.rb +2 -0
- data/components/elements/markdown-ui-content/lib/content/span_block.rb +19 -0
- data/exe/markdown-ui +5 -5
- data/lib/markdown-ui.rb +7 -1
- data/lib/markdown-ui/version.rb +1 -1
- data/website/about.html +16 -7
- data/website/about.md +13 -3
- data/website/compile.sh +6 -13
- data/website/docs/button.html +52 -43
- data/website/docs/button.md +49 -39
- data/website/docs/container.html +16 -7
- data/website/docs/container.md +13 -3
- data/website/docs/divider.html +225 -10
- data/website/docs/divider.md +202 -6
- data/website/docs/flag.html +4419 -0
- data/website/docs/flag.md +1721 -0
- data/website/docs/header.html +256 -0
- data/website/docs/header.md +220 -0
- data/website/docs/toc.html +79 -42
- data/website/docs/toc.md +71 -38
- data/website/index.html +155 -142
- data/website/index.md +111 -98
- metadata +10 -2
data/website/index.md
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
> Container:
|
2
2
|
> > Inverted Segment:
|
3
|
-
> > > Inverted Menu:
|
3
|
+
> > > Stackable Inverted Container Menu:
|
4
4
|
> > > [Markdown UI](http://jjuliano.github.io/markdown-ui "active basic")
|
5
|
-
> > > > Inverted Right Menu:
|
5
|
+
> > > > Stackable Inverted Right Menu:
|
6
6
|
> > > > [Docs](docs/toc.html)
|
7
7
|
> > > > [About](about.html)
|
8
8
|
> > > > [Github](https://github.com/jjuliano/markdown-ui)
|
@@ -16,7 +16,7 @@
|
|
16
16
|
>
|
17
17
|
> <!-- -->
|
18
18
|
> > Basic Attached Segment:
|
19
|
-
> > > Equal Width Grid:
|
19
|
+
> > > Stackable Equal Width Grid:
|
20
20
|
> > > > Column:
|
21
21
|
> > > > ## Installation::install
|
22
22
|
> > > > Markdown-UI is readily available as a Ruby gem. The minimum required Ruby version is 2.0. <br /> <br />
|
@@ -51,7 +51,7 @@
|
|
51
51
|
> > > > * Ongoing support for Semantic-UI elements/modules/components
|
52
52
|
> > > > * The Colon (:) character will be parsed when used inside a text, needs post-processing to dislay correctly (for URL's)"
|
53
53
|
> > > > * A separator in between two spaces is required on block elements to separate elements (see Column example)
|
54
|
-
> > > > * Some elements requires custom javascripts (ie toggle button) in order to display and format them properly.
|
54
|
+
> > > > * Some elements requires custom javascripts (ie toggle button) in order to display and format them properly. You can write in HTML and Javascripts the additional code alongside your Markdown-UI docs to display them properly.
|
55
55
|
> > > >
|
56
56
|
> > >
|
57
57
|
> > > <!-- -->
|
@@ -68,100 +68,113 @@
|
|
68
68
|
>
|
69
69
|
> <!-- -->
|
70
70
|
> ##Cheat Sheet:Center Aligned:cheatsheets
|
71
|
-
> > Equal Width Grid:
|
71
|
+
> > Stackable Equal Width Grid:
|
72
72
|
> > > Column:
|
73
|
-
> > > >
|
74
|
-
> > > >
|
75
|
-
> > > > >
|
76
|
-
> > > > >
|
77
|
-
> > > > > ```
|
78
|
-
> > > >
|
79
|
-
> > > >
|
80
|
-
> > > > >
|
81
|
-
> > > > >
|
82
|
-
> > > > > ```
|
83
|
-
> > > > > ``` > Button
|
84
|
-
> > > >
|
85
|
-
> > > >
|
86
|
-
> > > >
|
87
|
-
> > > > >
|
88
|
-
> > > > >
|
89
|
-
> > > > > ``` > ``` <br />
|
90
|
-
> > > >
|
91
|
-
> > > >
|
92
|
-
> > > >
|
93
|
-
> > > > >
|
94
|
-
> > > > >
|
95
|
-
> > > >
|
96
|
-
> > > >
|
97
|
-
> > > >
|
98
|
-
> > > > >
|
99
|
-
> > > > >
|
100
|
-
> > > > > ``` > ``` <br />
|
101
|
-
> > > >
|
102
|
-
> > > >
|
103
|
-
> > > >
|
104
|
-
> > > > >
|
105
|
-
> > > > >
|
106
|
-
> > > > > ``` >
|
107
|
-
> > > >
|
108
|
-
> > > >
|
109
|
-
> > > >
|
110
|
-
> > > > >
|
111
|
-
> > > > >
|
112
|
-
> > > > > ```
|
113
|
-
> > > > > ``` * List
|
114
|
-
> > > > > ```
|
115
|
-
> > > > > ```
|
116
|
-
> > > > > ``` 1. List
|
117
|
-
> > > >
|
118
|
-
> > > >
|
119
|
-
> > > >
|
120
|
-
> > > > >
|
121
|
-
> > > > >
|
122
|
-
> > > > > ``` >
|
73
|
+
> > > > Segments:
|
74
|
+
> > > > > Basic Segment:
|
75
|
+
> > > > > ##### Button
|
76
|
+
> > > > > > Inverted Blue Segment:
|
77
|
+
> > > > > > ``` # Short-Hand ``` <br />
|
78
|
+
> > > > > > ``` __Button|Button Text__ ```
|
79
|
+
> > > > >
|
80
|
+
> > > > > <!-- -->
|
81
|
+
> > > > > > Inverted Blue Segment:
|
82
|
+
> > > > > > ``` # Block Syntax ``` <br />
|
83
|
+
> > > > > > ``` > Button: ``` <br />
|
84
|
+
> > > > > > ``` > Button Text ``` <br />
|
85
|
+
> > > > >
|
86
|
+
> > > > > <!-- -->
|
87
|
+
> > > > > ##### Container
|
88
|
+
> > > > > > Inverted Blue Segment:
|
89
|
+
> > > > > > ``` > Container: ``` <br />
|
90
|
+
> > > > > > ``` > ``` <br />
|
91
|
+
> > > > >
|
92
|
+
> > > > > <!-- -->
|
93
|
+
> > > > > ##### Icon
|
94
|
+
> > > > > > Inverted Blue Segment:
|
95
|
+
> > > > > > ``` _Icon <Name>_ ``` <br />
|
96
|
+
> > > > >
|
97
|
+
> > > > > <!-- -->
|
98
|
+
> > > > > ##### Segment
|
99
|
+
> > > > > > Inverted Blue Segment:
|
100
|
+
> > > > > > ``` > Segment: ``` <br />
|
101
|
+
> > > > > > ``` > ``` <br />
|
102
|
+
> > > > >
|
103
|
+
> > > > > <!-- -->
|
104
|
+
> > > > > ##### Menu
|
105
|
+
> > > > > > Inverted Blue Segment:
|
106
|
+
> > > > > > ``` > Menu: ``` <br />
|
107
|
+
> > > > > > ``` > [Menu Item]() ``` <br />
|
108
|
+
> > > > >
|
109
|
+
> > > > > <!-- -->
|
110
|
+
> > > > > ##### List
|
111
|
+
> > > > > > Inverted Blue Segment:
|
112
|
+
> > > > > > ``` # Unordered List ``` <br />
|
113
|
+
> > > > > > ``` * List 1 ``` <br />
|
114
|
+
> > > > > > ``` * List 2 ``` <br />
|
115
|
+
> > > > > > ``` # Ordered List ``` <br />
|
116
|
+
> > > > > > ``` 1. List 1 ``` <br />
|
117
|
+
> > > > > > ``` 1. List 2 ``` <br />
|
118
|
+
> > > > >
|
119
|
+
> > > > > <!-- -->
|
120
|
+
> > > > > ##### Label
|
121
|
+
> > > > > > Inverted Blue Segment:
|
122
|
+
> > > > > > ``` > Label: ``` <br />
|
123
|
+
> > > > > > ``` > _Mail Icon_ 23 ``` <br />
|
123
124
|
> >
|
124
|
-
> > <!-- -->
|
125
|
+
> > <!-- -->
|
125
126
|
> > > Column:
|
126
|
-
> > > >
|
127
|
-
> > > >
|
128
|
-
> > > > >
|
129
|
-
> > > > >
|
130
|
-
> > > >
|
131
|
-
> > > >
|
132
|
-
> > > >
|
133
|
-
> > > > >
|
134
|
-
> > > > >
|
135
|
-
> > > > > ```
|
136
|
-
> > > >
|
137
|
-
> > > >
|
138
|
-
> > > > >
|
139
|
-
> > > > >
|
140
|
-
> > > > > ```
|
141
|
-
> > > > > ``` >
|
142
|
-
> > > > > ``` > Message
|
143
|
-
> > > >
|
144
|
-
> > > >
|
145
|
-
> > > >
|
146
|
-
> > > > >
|
147
|
-
> > > > >
|
148
|
-
> > > >
|
149
|
-
> > > >
|
150
|
-
> > > > >
|
151
|
-
> > > > >
|
152
|
-
> > > > > ```
|
153
|
-
> > > >
|
154
|
-
> > > >
|
155
|
-
> > > >
|
156
|
-
> > > > >
|
157
|
-
> > > > >
|
158
|
-
> > > > > ``` >
|
159
|
-
> > > > > ``` >
|
160
|
-
> > > > > ``` >
|
161
|
-
> > > > > ``` >
|
162
|
-
> > > > > ``` > > Column
|
163
|
-
> > > > > ``` > ``` <br />
|
164
|
-
> > > > > ``` >
|
165
|
-
> > > > > ``` >
|
166
|
-
> > > > > ``` >
|
167
|
-
> > > > > ``` > > Column
|
127
|
+
> > > > Segments:
|
128
|
+
> > > > > Basic Segment:
|
129
|
+
> > > > > ##### Item
|
130
|
+
> > > > > > Inverted Blue Segment:
|
131
|
+
> > > > > > ``` [Item](#URL_ID "class") ``` <br />
|
132
|
+
> > > > >
|
133
|
+
> > > > > <!-- -->
|
134
|
+
> > > > > ##### Message
|
135
|
+
> > > > > > Inverted Blue Segment:
|
136
|
+
> > > > > > ``` # Short-Hand ``` <br />
|
137
|
+
> > > > > > ``` __Message|Header:Message Header,Text:Message Text__ ``` <br />
|
138
|
+
> > > > >
|
139
|
+
> > > > > <!-- -->
|
140
|
+
> > > > > > Inverted Blue Segment:
|
141
|
+
> > > > > > ``` # Block Syntax ``` <br />
|
142
|
+
> > > > > > ``` > Message: ``` <br />
|
143
|
+
> > > > > > ``` > __Header|Message Header__ ``` <br />
|
144
|
+
> > > > > > ``` > Message Text ``` <br />
|
145
|
+
> > > > >
|
146
|
+
> > > > > <!-- -->
|
147
|
+
> > > > > ##### Header
|
148
|
+
> > > > > > Inverted Blue Segment:
|
149
|
+
> > > > > > ``` # H1, ## H2, ### H3, #### H4 ... ``` <br />
|
150
|
+
> > > > >
|
151
|
+
> > > > > <!-- -->
|
152
|
+
> > > > > > Inverted Blue Segment:
|
153
|
+
> > > > > > ``` # DIV tag header ``` <br />
|
154
|
+
> > > > > > ``` __Header|A Div Header__ ``` <br />
|
155
|
+
> > > > >
|
156
|
+
> > > > > <!-- -->
|
157
|
+
> > > > > ##### Column / Grid / Row / Segment / Container
|
158
|
+
> > > > > > Inverted Blue Segment:
|
159
|
+
> > > > > > ``` > Grid:``` <br />
|
160
|
+
> > > > > > ``` > ``` <br />
|
161
|
+
> > > > > > ``` > <!-- -->``` <br />
|
162
|
+
> > > > > > ``` > ``` <br />
|
163
|
+
> > > > > > ``` > > Column:``` <br />
|
164
|
+
> > > > > > ``` > > Column 1 ``` <br />
|
165
|
+
> > > > > > ``` > ``` <br />
|
166
|
+
> > > > > > ``` > <!-- -->``` <br />
|
167
|
+
> > > > > > ``` > ``` <br />
|
168
|
+
> > > > > > ``` > > Column:``` <br />
|
169
|
+
> > > > > > ``` > > Column 2 ``` <br />
|
170
|
+
|
171
|
+
>
|
172
|
+
> <!-- -->
|
173
|
+
> > Inverted Center Aligned Footer Segment Container Grid:
|
174
|
+
> > > Ten Wide Column:
|
175
|
+
> > > ##### Help Preserve This Project:Inverted
|
176
|
+
> > > Please help Markdown-UI by means of voluntary donations, money donated to the project will benefit the project by ensuring that Markdown-UI itself will remain well supported for the foreseeable future.
|
177
|
+
> > > " "
|
178
|
+
> > > [__Primary Button|Donate Today__](PAYPAL_BUTTON)
|
179
|
+
> ____
|
180
|
+
> > [Free and Open Source (MIT)](http://markdown-ui.mit-license.org)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: markdown-ui
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.16
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joel Bryan Juliano
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-11-
|
11
|
+
date: 2015-11-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -211,17 +211,21 @@ files:
|
|
211
211
|
- components/elements/markdown-ui-container/lib/markdown-ui-container.rb
|
212
212
|
- components/elements/markdown-ui-container/markdown-ui-container.gemspec
|
213
213
|
- components/elements/markdown-ui-content/Gemfile
|
214
|
+
- components/elements/markdown-ui-content/lib/content/content_block.rb
|
214
215
|
- components/elements/markdown-ui-content/lib/content/custom.rb
|
215
216
|
- components/elements/markdown-ui-content/lib/content/divider_block.rb
|
216
217
|
- components/elements/markdown-ui-content/lib/content/field_block.rb
|
218
|
+
- components/elements/markdown-ui-content/lib/content/flag.rb
|
217
219
|
- components/elements/markdown-ui-content/lib/content/form_block.rb
|
218
220
|
- components/elements/markdown-ui-content/lib/content/header.rb
|
221
|
+
- components/elements/markdown-ui-content/lib/content/header_block.rb
|
219
222
|
- components/elements/markdown-ui-content/lib/content/icon.rb
|
220
223
|
- components/elements/markdown-ui-content/lib/content/input_block.rb
|
221
224
|
- components/elements/markdown-ui-content/lib/content/item.rb
|
222
225
|
- components/elements/markdown-ui-content/lib/content/item_block.rb
|
223
226
|
- components/elements/markdown-ui-content/lib/content/list.rb
|
224
227
|
- components/elements/markdown-ui-content/lib/content/parser.rb
|
228
|
+
- components/elements/markdown-ui-content/lib/content/span_block.rb
|
225
229
|
- components/elements/markdown-ui-content/lib/content/text.rb
|
226
230
|
- components/elements/markdown-ui-content/lib/content/version.rb
|
227
231
|
- components/elements/markdown-ui-content/lib/markdown-ui-content.rb
|
@@ -282,6 +286,10 @@ files:
|
|
282
286
|
- website/docs/container.md
|
283
287
|
- website/docs/divider.html
|
284
288
|
- website/docs/divider.md
|
289
|
+
- website/docs/flag.html
|
290
|
+
- website/docs/flag.md
|
291
|
+
- website/docs/header.html
|
292
|
+
- website/docs/header.md
|
285
293
|
- website/docs/toc.html
|
286
294
|
- website/docs/toc.md
|
287
295
|
- website/index.html
|