markdown-ui 0.1.10 → 0.1.11
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 +12 -0
- data/TODO.md +16 -2
- data/exe/markdown-ui +2 -2
- data/lib/markdown-ui/version.rb +1 -1
- data/markdown-ui.gemspec +1 -1
- data/website/about.html +2 -2
- data/website/docs/button.html +12 -2
- data/website/docs/button.md +5 -0
- data/website/docs/container.html +137 -0
- data/website/docs/container.md +183 -0
- data/website/docs/toc.html +21 -2
- data/website/docs/toc.md +25 -0
- data/website/index.html +2 -2
- metadata +6 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e948b13739771cf2a0c3f9805ff230213cafc774
|
|
4
|
+
data.tar.gz: 8f06bd181772ee12552d38d22fa1a1fa006f1073
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b4f8f331ca1efd4cf81b651634bedf1c3c80352398caa9fb13a4a5755a3ac903e0ae784213906ddda7e55f41f83b5610388be84a18bd04604293ff58517dc80e
|
|
7
|
+
data.tar.gz: faf06313f3ec309f901564c13c33c94a4cd2d6c32d067ca4e0ee514cde2d2b3dc9bcf3ad7d03d7ec1cb88aa061b7a98077f7dd54ae692835d2b3ab07624a0d70
|
data/Changelog
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
0.1.11 - 08-24-15
|
|
2
|
+
* Upgraded RedCarpet to 3.3
|
|
3
|
+
* Upgraded Semantic-UI to 2.0.8
|
|
4
|
+
* Added container documentation
|
|
5
|
+
- Standard container
|
|
6
|
+
- Text Container
|
|
7
|
+
- Text Alignment
|
|
8
|
+
- Fluid
|
|
9
|
+
* Added the container tests and documentation
|
|
10
|
+
- Fluid
|
|
11
|
+
* Fix Button example
|
|
12
|
+
|
|
1
13
|
0.1.10 - 08-19-15
|
|
2
14
|
* Removed SmartyPants
|
|
3
15
|
* Added the following button tests and documentation
|
data/TODO.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Button
|
|
2
|
-
*
|
|
2
|
+
* Types
|
|
3
3
|
√ Button
|
|
4
4
|
√ Emphasis
|
|
5
5
|
√ Animated
|
|
@@ -41,4 +41,18 @@
|
|
|
41
41
|
√ Equal Width
|
|
42
42
|
√ Colored Buttons
|
|
43
43
|
√ Basic Buttons
|
|
44
|
-
√ Group Sizes
|
|
44
|
+
√ Group Sizes
|
|
45
|
+
|
|
46
|
+
#Container
|
|
47
|
+
* Types
|
|
48
|
+
√ Standard Container
|
|
49
|
+
√ Text Container
|
|
50
|
+
|
|
51
|
+
* Variations
|
|
52
|
+
√ Text Alignment
|
|
53
|
+
√ Fluid
|
|
54
|
+
|
|
55
|
+
* Examples
|
|
56
|
+
Container Using Grids
|
|
57
|
+
Centered Menu
|
|
58
|
+
Container Segment
|
data/exe/markdown-ui
CHANGED
|
@@ -18,9 +18,9 @@ puts <<-EOS
|
|
|
18
18
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
19
19
|
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
|
|
20
20
|
|
|
21
|
-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.0.
|
|
21
|
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.0.8/semantic.min.css">
|
|
22
22
|
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
23
|
-
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.0.
|
|
23
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.0.8/semantic.min.js"></script>
|
|
24
24
|
|
|
25
25
|
<!--[if lt IE 9]>
|
|
26
26
|
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
data/lib/markdown-ui/version.rb
CHANGED
data/markdown-ui.gemspec
CHANGED
|
@@ -28,7 +28,7 @@ Gem::Specification.new do |spec|
|
|
|
28
28
|
spec.require_paths = ["lib"]
|
|
29
29
|
|
|
30
30
|
spec.add_dependency "bundler", "~> 1.10", "~> 1.9"
|
|
31
|
-
spec.add_dependency "redcarpet", "~> 3.
|
|
31
|
+
spec.add_dependency "redcarpet", "~> 3.3"
|
|
32
32
|
spec.add_dependency "nokogiri", "~> 1.5", "~> 1.6"
|
|
33
33
|
spec.add_development_dependency "rake", "~> 10.0"
|
|
34
34
|
spec.add_development_dependency "test-unit", "~> 3.0"
|
data/website/about.html
CHANGED
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
7
7
|
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
|
|
8
8
|
|
|
9
|
-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.0.
|
|
9
|
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.0.8/semantic.min.css">
|
|
10
10
|
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
11
|
-
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.0.
|
|
11
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.0.8/semantic.min.js"></script>
|
|
12
12
|
|
|
13
13
|
<!--[if lt IE 9]>
|
|
14
14
|
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
data/website/docs/button.html
CHANGED
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
7
7
|
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
|
|
8
8
|
|
|
9
|
-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.0.
|
|
9
|
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.0.8/semantic.min.css">
|
|
10
10
|
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
11
|
-
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.0.
|
|
11
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.0.8/semantic.min.js"></script>
|
|
12
12
|
|
|
13
13
|
<!--[if lt IE 9]>
|
|
14
14
|
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
|
@@ -978,6 +978,16 @@
|
|
|
978
978
|
<br />
|
|
979
979
|
<code></code>
|
|
980
980
|
<br />
|
|
981
|
+
<code>> Attached Segment:</code>
|
|
982
|
+
<br />
|
|
983
|
+
<code>> " "</code>
|
|
984
|
+
<br />
|
|
985
|
+
<code></code>
|
|
986
|
+
<br />
|
|
987
|
+
<code><!-- --></code>
|
|
988
|
+
<br />
|
|
989
|
+
<code></code>
|
|
990
|
+
<br />
|
|
981
991
|
<code>> Two Bottom Attached Buttons:</code>
|
|
982
992
|
<br />
|
|
983
993
|
<code>> __Button|One__</code>
|
data/website/docs/button.md
CHANGED
|
@@ -951,6 +951,11 @@
|
|
|
951
951
|
> > > > ``` ``` <br />
|
|
952
952
|
> > > > ``` <!-- --> ``` <br />
|
|
953
953
|
> > > > ``` ``` <br />
|
|
954
|
+
> > > > ```> Attached Segment:``` <br />
|
|
955
|
+
> > > > ```> " " ``` <br />
|
|
956
|
+
> > > > ``` ``` <br />
|
|
957
|
+
> > > > ``` <!-- --> ``` <br />
|
|
958
|
+
> > > > ``` ``` <br />
|
|
954
959
|
> > > > ```> Two Bottom Attached Buttons:``` <br />
|
|
955
960
|
> > > > ```> __Button|One__ ``` <br />
|
|
956
961
|
> > > > ```> __Button|Two__ ``` <br />
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
|
|
3
|
+
<html lang="en">
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="utf-8">
|
|
6
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
|
|
8
|
+
|
|
9
|
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.0.8/semantic.min.css">
|
|
10
|
+
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
11
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.0.8/semantic.min.js"></script>
|
|
12
|
+
|
|
13
|
+
<!--[if lt IE 9]>
|
|
14
|
+
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
|
15
|
+
<![endif]-->
|
|
16
|
+
</head>
|
|
17
|
+
|
|
18
|
+
<body>
|
|
19
|
+
<div class="ui container">
|
|
20
|
+
<div class="ui inverted segment">
|
|
21
|
+
<div class="ui inverted menu">
|
|
22
|
+
<a class="ui basic item" href="http://jjuliano.github.io/markdown-ui">Markdown UI</a>
|
|
23
|
+
<div class="ui inverted right menu">
|
|
24
|
+
<a class="ui item" href="toc.html">Table of Contents</a>
|
|
25
|
+
<a class="ui item" href="../about.html">About</a>
|
|
26
|
+
<a class="ui item" href="https://github.com/jjuliano/markdown-ui">Github</a>
|
|
27
|
+
<a class="ui item" href="../index.html#install">Install</a>
|
|
28
|
+
</div>
|
|
29
|
+
</div>
|
|
30
|
+
</div>
|
|
31
|
+
<!-- -->
|
|
32
|
+
<div class="ui basic segment">
|
|
33
|
+
<h1 id="container" class="ui center aligned header">Container</h1>
|
|
34
|
+
</div>
|
|
35
|
+
<!-- -->
|
|
36
|
+
<div class="ui basic segment">
|
|
37
|
+
<h2 id="types" class="ui dividing left aligned header">Types</h2>
|
|
38
|
+
</div>
|
|
39
|
+
<!-- -->
|
|
40
|
+
<div class="ui basic segment">
|
|
41
|
+
<h4 id="standard-container" class="ui header">Standard Container</h4>
|
|
42
|
+
<p>A standard container</p>
|
|
43
|
+
</div>
|
|
44
|
+
<!-- -->
|
|
45
|
+
<div class="ui divided segment grid">
|
|
46
|
+
<div class="ui attached segment">
|
|
47
|
+
<div class="ui top attached label">Standard Container</div>
|
|
48
|
+
</div>
|
|
49
|
+
<!-- -->
|
|
50
|
+
<div class="ui sixteen wide column">
|
|
51
|
+
<h5 class="ui header">Preview</h5>
|
|
52
|
+
<div class="ui segment container">
|
|
53
|
+
<p>Lorem Ipsum Dolor</p>
|
|
54
|
+
</div>
|
|
55
|
+
</div>
|
|
56
|
+
<!-- -->
|
|
57
|
+
<div class="ui sixteen wide column">
|
|
58
|
+
<h5 class="ui header">Markdown Syntax</h5>
|
|
59
|
+
<div class="ui inverted very padded segment">
|
|
60
|
+
<code>> Container:</code>
|
|
61
|
+
<br />
|
|
62
|
+
<code>> "Lorem Ipsum Dolor"</code>
|
|
63
|
+
</div>
|
|
64
|
+
</div>
|
|
65
|
+
<!-- -->
|
|
66
|
+
</div>
|
|
67
|
+
<!-- -->
|
|
68
|
+
<div class="ui basic segment">
|
|
69
|
+
<h4 id="text-container" class="ui header">Text Container</h4>
|
|
70
|
+
<p>A container can reduce its maximum width to more naturally accomodate a single column of text</p>
|
|
71
|
+
</div>
|
|
72
|
+
<!-- -->
|
|
73
|
+
<div class="ui divided segment grid">
|
|
74
|
+
<div class="ui attached segment">
|
|
75
|
+
<div class="ui top attached label">Text Container</div>
|
|
76
|
+
</div>
|
|
77
|
+
<!-- -->
|
|
78
|
+
<div class="ui sixteen wide column">
|
|
79
|
+
<h5 class="ui header">Preview</h5>
|
|
80
|
+
<div class="ui segment text container">
|
|
81
|
+
<h1 class="ui header">Header</h1>
|
|
82
|
+
<p>Lorem Ipsum Dolor</p>
|
|
83
|
+
</div>
|
|
84
|
+
</div>
|
|
85
|
+
<!-- -->
|
|
86
|
+
<div class="ui sixteen wide column">
|
|
87
|
+
<h5 class="ui header">Markdown Syntax</h5>
|
|
88
|
+
<div class="ui inverted very padded segment">
|
|
89
|
+
<code>> Text Container:</code>
|
|
90
|
+
<br />
|
|
91
|
+
<code>> # Header</code>
|
|
92
|
+
<br />
|
|
93
|
+
<code>> "Lorem Ipsum Dolor"</code>
|
|
94
|
+
</div>
|
|
95
|
+
</div>
|
|
96
|
+
<!-- -->
|
|
97
|
+
</div>
|
|
98
|
+
<!-- -->
|
|
99
|
+
<div class="ui basic segment">
|
|
100
|
+
<h2 id="types" class="ui dividing left aligned header">Variations</h2>
|
|
101
|
+
</div>
|
|
102
|
+
<!-- -->
|
|
103
|
+
<div class="ui basic segment">
|
|
104
|
+
<h4 id="text-alignment" class="ui header">Text Alignment</h4>
|
|
105
|
+
<p>A container can specify its text alignment</p>
|
|
106
|
+
</div>
|
|
107
|
+
<!-- -->
|
|
108
|
+
<div class="ui divided segment grid"><div class="ui attached segment"><div class="ui top attached label">Text Alignment</div></div><!-- --><div class="ui sixteen wide column"><h5 class="ui header">Preview</h5><div class="ui segment left aligned container"><p>Left Aligned</p></div><!-- --><div class="ui segment center aligned container"><p>Center Aligned</p></div><!-- --><div class="ui segment right aligned container"><p>Right Aligned</p></div><!-- --><div class="ui segment justified aligned container"><p>Justified Aligned</p></div><!-- --></div><!-- --><div class="ui sixteen wide column"><h5 class="ui header">Markdown Syntax</h5><div class="ui inverted very padded segment"><code>> Left Aligned Container:</code><br /><code>> "Left Aligned"</code><br /><code></code><br /><code><!-- --></code><br /><code></code><br /><code>> Center Aligned Container:</code><br /><code>> "Center Aligned"</code><br /><code></code><br /><code><!-- --></code><br /><code></code><br /><code>> Right Aligned Container:</code><br /><code>> "Right Aligned"</code><br /><code></code><br /><code><!-- --></code><br /><code></code><br /><code>> Justified Aligned Container:</code><br /><code>> "Justified Aligned"</code></div></div><!-- -->
|
|
109
|
+
Basic Segment</div>
|
|
110
|
+
<!-- -->
|
|
111
|
+
<div class="ui divided segment grid">
|
|
112
|
+
<div class="ui attached segment">
|
|
113
|
+
<div class="ui top attached label">Fluid Alignment</div>
|
|
114
|
+
</div>
|
|
115
|
+
<!-- -->
|
|
116
|
+
<div class="ui sixteen wide column">
|
|
117
|
+
<h5 class="ui header">Preview</h5>
|
|
118
|
+
<div class="ui segment fluid container">
|
|
119
|
+
<p>Fluid</p>
|
|
120
|
+
</div>
|
|
121
|
+
<!-- -->
|
|
122
|
+
</div>
|
|
123
|
+
<!-- -->
|
|
124
|
+
<div class="ui sixteen wide column">
|
|
125
|
+
<h5 class="ui header">Markdown Syntax</h5>
|
|
126
|
+
<div class="ui inverted very padded segment">
|
|
127
|
+
<code>> Fluid Container:</code>
|
|
128
|
+
<br />
|
|
129
|
+
<code>> "Fluid"</code>
|
|
130
|
+
</div>
|
|
131
|
+
</div>
|
|
132
|
+
<!-- -->
|
|
133
|
+
</div>
|
|
134
|
+
</div>
|
|
135
|
+
|
|
136
|
+
</body>
|
|
137
|
+
</html>
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
> Container:
|
|
2
|
+
> > Inverted Segment:
|
|
3
|
+
> > > Inverted Menu:
|
|
4
|
+
> > > [Markdown UI](http://jjuliano.github.io/markdown-ui "basic")
|
|
5
|
+
> > > > Inverted Right Menu:
|
|
6
|
+
> > > > [Table of Contents](toc.html)
|
|
7
|
+
> > > > [About](../about.html)
|
|
8
|
+
> > > > [Github](https://github.com/jjuliano/markdown-ui)
|
|
9
|
+
> > > > [Install](../index.html#install)
|
|
10
|
+
>
|
|
11
|
+
> <!-- -->
|
|
12
|
+
>
|
|
13
|
+
> > Basic Segment:
|
|
14
|
+
> > # Container:Center Aligned:container
|
|
15
|
+
>
|
|
16
|
+
> <!-- -->
|
|
17
|
+
>
|
|
18
|
+
> > Basic Segment:
|
|
19
|
+
> > ## Types:Dividing Left Aligned:types
|
|
20
|
+
>
|
|
21
|
+
> <!-- -->
|
|
22
|
+
>
|
|
23
|
+
> > Basic Segment:
|
|
24
|
+
> > #### Standard Container::standard-container
|
|
25
|
+
> > "A standard container"
|
|
26
|
+
>
|
|
27
|
+
> <!-- -->
|
|
28
|
+
>
|
|
29
|
+
> > Divided Segment Grid:
|
|
30
|
+
> > > Attached Segment:
|
|
31
|
+
> > > > Top Attached Label:
|
|
32
|
+
> > > > Standard Container
|
|
33
|
+
> >
|
|
34
|
+
> > <!-- -->
|
|
35
|
+
> >
|
|
36
|
+
> > > Sixteen Wide Column:
|
|
37
|
+
> > > ##### Preview
|
|
38
|
+
> > > > Segment Container:
|
|
39
|
+
> > > > "Lorem Ipsum Dolor"
|
|
40
|
+
> >
|
|
41
|
+
> > <!-- -->
|
|
42
|
+
> >
|
|
43
|
+
> > > Sixteen Wide Column:
|
|
44
|
+
> > > ##### Markdown Syntax
|
|
45
|
+
> > > > Inverted Very Padded Segment:
|
|
46
|
+
> > > > ``` > Container: ``` <br />
|
|
47
|
+
> > > > ``` > "Lorem Ipsum Dolor" ```
|
|
48
|
+
> >
|
|
49
|
+
> > <!-- -->
|
|
50
|
+
> >
|
|
51
|
+
>
|
|
52
|
+
> <!-- -->
|
|
53
|
+
>
|
|
54
|
+
> > Basic Segment:
|
|
55
|
+
> > #### Text Container::text-container
|
|
56
|
+
> > "A container can reduce its maximum width to more naturally accomodate a single column of text"
|
|
57
|
+
>
|
|
58
|
+
> <!-- -->
|
|
59
|
+
>
|
|
60
|
+
> > Divided Segment Grid:
|
|
61
|
+
> > > Attached Segment:
|
|
62
|
+
> > > > Top Attached Label:
|
|
63
|
+
> > > > Text Container
|
|
64
|
+
> >
|
|
65
|
+
> > <!-- -->
|
|
66
|
+
> >
|
|
67
|
+
> > > Sixteen Wide Column:
|
|
68
|
+
> > > ##### Preview
|
|
69
|
+
> > > > Segment Text Container:
|
|
70
|
+
> > > > # Header
|
|
71
|
+
> > > > "Lorem Ipsum Dolor"
|
|
72
|
+
> >
|
|
73
|
+
> > <!-- -->
|
|
74
|
+
> >
|
|
75
|
+
> > > Sixteen Wide Column:
|
|
76
|
+
> > > ##### Markdown Syntax
|
|
77
|
+
> > > > Inverted Very Padded Segment:
|
|
78
|
+
> > > > ``` > Text Container: ``` <br />
|
|
79
|
+
> > > > ``` > # Header``` <br />
|
|
80
|
+
> > > > ``` > "Lorem Ipsum Dolor" ```
|
|
81
|
+
> >
|
|
82
|
+
> > <!-- -->
|
|
83
|
+
> >
|
|
84
|
+
>
|
|
85
|
+
> <!-- -->
|
|
86
|
+
>
|
|
87
|
+
> > Basic Segment:
|
|
88
|
+
> > ## Variations:Dividing Left Aligned:types
|
|
89
|
+
>
|
|
90
|
+
> <!-- -->
|
|
91
|
+
>
|
|
92
|
+
> > Basic Segment:
|
|
93
|
+
> > #### Text Alignment::text-alignment
|
|
94
|
+
> > "A container can specify its text alignment"
|
|
95
|
+
>
|
|
96
|
+
> <!-- -->
|
|
97
|
+
>
|
|
98
|
+
> > Divided Segment Grid:
|
|
99
|
+
> > > Attached Segment:
|
|
100
|
+
> > > > Top Attached Label:
|
|
101
|
+
> > > > Text Alignment
|
|
102
|
+
> >
|
|
103
|
+
> > <!-- -->
|
|
104
|
+
> >
|
|
105
|
+
> > > Sixteen Wide Column:
|
|
106
|
+
> > > ##### Preview
|
|
107
|
+
> > > > Segment Left Aligned Container:
|
|
108
|
+
> > > > "Left Aligned"
|
|
109
|
+
> > >
|
|
110
|
+
> > > <!-- -->
|
|
111
|
+
> > >
|
|
112
|
+
> > > > Segment Center Aligned Container:
|
|
113
|
+
> > > > "Center Aligned"
|
|
114
|
+
> > >
|
|
115
|
+
> > > <!-- -->
|
|
116
|
+
> > >
|
|
117
|
+
> > > > Segment Right Aligned Container:
|
|
118
|
+
> > > > "Right Aligned"
|
|
119
|
+
> > >
|
|
120
|
+
> > > <!-- -->
|
|
121
|
+
> > >
|
|
122
|
+
> > > > Segment Justified Aligned Container:
|
|
123
|
+
> > > > "Justified Aligned"
|
|
124
|
+
> > >
|
|
125
|
+
> > > <!-- -->
|
|
126
|
+
> > >
|
|
127
|
+
> >
|
|
128
|
+
> > <!-- -->
|
|
129
|
+
> >
|
|
130
|
+
> > > Sixteen Wide Column:
|
|
131
|
+
> > > ##### Markdown Syntax
|
|
132
|
+
> > > > Inverted Very Padded Segment:
|
|
133
|
+
> > > > ``` > Left Aligned Container: ``` <br />
|
|
134
|
+
> > > > ``` > "Left Aligned" ``` <br />
|
|
135
|
+
> > > > ``` ``` <br />
|
|
136
|
+
> > > > ``` <!-- --> ``` <br />
|
|
137
|
+
> > > > ``` ``` <br />
|
|
138
|
+
> > > > ``` > Center Aligned Container: ``` <br />
|
|
139
|
+
> > > > ``` > "Center Aligned" ``` <br />
|
|
140
|
+
> > > > ``` ``` <br />
|
|
141
|
+
> > > > ``` <!-- --> ``` <br />
|
|
142
|
+
> > > > ``` ``` <br />
|
|
143
|
+
> > > > ``` > Right Aligned Container: ``` <br />
|
|
144
|
+
> > > > ``` > "Right Aligned" ``` <br />
|
|
145
|
+
> > > > ``` ``` <br />
|
|
146
|
+
> > > > ``` <!-- --> ``` <br />
|
|
147
|
+
> > > > ``` ``` <br />
|
|
148
|
+
> > > > ``` > Justified Aligned Container: ``` <br />
|
|
149
|
+
> > > > ``` > "Justified Aligned" ```
|
|
150
|
+
> >
|
|
151
|
+
> > <!-- -->
|
|
152
|
+
> >
|
|
153
|
+
> > Basic Segment:
|
|
154
|
+
> > #### Fluid::fluid
|
|
155
|
+
> > "A fluid container has no maximum width"
|
|
156
|
+
>
|
|
157
|
+
> <!-- -->
|
|
158
|
+
>
|
|
159
|
+
> > Divided Segment Grid:
|
|
160
|
+
> > > Attached Segment:
|
|
161
|
+
> > > > Top Attached Label:
|
|
162
|
+
> > > > Fluid Alignment
|
|
163
|
+
> >
|
|
164
|
+
> > <!-- -->
|
|
165
|
+
> >
|
|
166
|
+
> > > Sixteen Wide Column:
|
|
167
|
+
> > > ##### Preview
|
|
168
|
+
> > > > Segment Fluid Container:
|
|
169
|
+
> > > > "Fluid"
|
|
170
|
+
> > >
|
|
171
|
+
> > > <!-- -->
|
|
172
|
+
> > >
|
|
173
|
+
> >
|
|
174
|
+
> > <!-- -->
|
|
175
|
+
> >
|
|
176
|
+
> > > Sixteen Wide Column:
|
|
177
|
+
> > > ##### Markdown Syntax
|
|
178
|
+
> > > > Inverted Very Padded Segment:
|
|
179
|
+
> > > > ``` > Fluid Container: ``` <br />
|
|
180
|
+
> > > > ``` > "Fluid" ```
|
|
181
|
+
> >
|
|
182
|
+
> > <!-- -->
|
|
183
|
+
> >
|
data/website/docs/toc.html
CHANGED
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
7
7
|
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
|
|
8
8
|
|
|
9
|
-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.0.
|
|
9
|
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.0.8/semantic.min.css">
|
|
10
10
|
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
11
|
-
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.0.
|
|
11
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.0.8/semantic.min.js"></script>
|
|
12
12
|
|
|
13
13
|
<!--[if lt IE 9]>
|
|
14
14
|
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
|
@@ -102,6 +102,25 @@
|
|
|
102
102
|
,
|
|
103
103
|
<a class="ui item" href="button.html#group-sizes">Group Sizes</a></div>
|
|
104
104
|
</div>
|
|
105
|
+
<!-- -->
|
|
106
|
+
<h2 class="ui header">
|
|
107
|
+
<a class="ui item" href="container.html#container">Container</a>
|
|
108
|
+
</h2>
|
|
109
|
+
<div class="ui two column doubling grid container">
|
|
110
|
+
<div class="ui column"><h3 class="ui header"><a class="ui item" href="container.html#types">Types</a></h3><a class="ui item" href="container.html#standard-container">Standard Container</a>
|
|
111
|
+
,
|
|
112
|
+
<a class="ui item" href="container.html#text-container">Text Container</a></div>
|
|
113
|
+
<!-- -->
|
|
114
|
+
<div class="ui column"><h3 class="ui header"><a class="ui item" href="container.html#variations">Variations</a></h3><a class="ui item" href="container.html#text-alignment">Text Alignment</a>
|
|
115
|
+
,
|
|
116
|
+
<a class="ui item" href="container.html#fluid">Fluid</a></div>
|
|
117
|
+
<!-- -->
|
|
118
|
+
<div class="ui column"><h3 class="ui header"><a class="ui item" href="container.html#examples">Examples</a></h3><a class="ui item" href="container.html#container-using-grids">Container Using Grids</a>
|
|
119
|
+
,
|
|
120
|
+
<a class="ui item" href="container.html#centered-container">Centered Menu</a>
|
|
121
|
+
,
|
|
122
|
+
<a class="ui item" href="container.html#container-segment">Container Segment</a></div>
|
|
123
|
+
</div>
|
|
105
124
|
</div>
|
|
106
125
|
</div>
|
|
107
126
|
|
data/website/docs/toc.md
CHANGED
|
@@ -72,3 +72,28 @@
|
|
|
72
72
|
> > > > [Colored Buttons](button.html#colored-buttons),
|
|
73
73
|
> > > > [Basic Buttons](button.html#basic-buttons),
|
|
74
74
|
> > > > [Group Sizes](button.html#group-sizes)
|
|
75
|
+
> >
|
|
76
|
+
> > <!-- -->
|
|
77
|
+
> >
|
|
78
|
+
> > ## [Container](container.html#container)
|
|
79
|
+
> > > Two Column Doubling Grid Container:
|
|
80
|
+
> > > > Column:
|
|
81
|
+
> > > > ### [Types](container.html#types)
|
|
82
|
+
> > > > [Standard Container](container.html#standard-container),
|
|
83
|
+
> > > > [Text Container](container.html#text-container)
|
|
84
|
+
> > >
|
|
85
|
+
> > > <!-- -->
|
|
86
|
+
> > >
|
|
87
|
+
> > > > Column:
|
|
88
|
+
> > > > ### [Variations](container.html#variations)
|
|
89
|
+
> > > > [Text Alignment](container.html#text-alignment),
|
|
90
|
+
> > > > [Fluid](container.html#fluid)
|
|
91
|
+
> > >
|
|
92
|
+
> > > <!-- -->
|
|
93
|
+
> > >
|
|
94
|
+
> > > > Column:
|
|
95
|
+
> > > > ### [Examples](container.html#examples)
|
|
96
|
+
> > > > [Container Using Grids](container.html#container-using-grids),
|
|
97
|
+
> > > > [Centered Menu](container.html#centered-container),
|
|
98
|
+
> > > > [Container Segment](container.html#container-segment)
|
|
99
|
+
|
data/website/index.html
CHANGED
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
7
7
|
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
|
|
8
8
|
|
|
9
|
-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.0.
|
|
9
|
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.0.8/semantic.min.css">
|
|
10
10
|
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
|
|
11
|
-
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.0.
|
|
11
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.0.8/semantic.min.js"></script>
|
|
12
12
|
|
|
13
13
|
<!--[if lt IE 9]>
|
|
14
14
|
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
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.11
|
|
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-08-
|
|
11
|
+
date: 2015-08-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -36,14 +36,14 @@ dependencies:
|
|
|
36
36
|
requirements:
|
|
37
37
|
- - "~>"
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
|
-
version: '3.
|
|
39
|
+
version: '3.3'
|
|
40
40
|
type: :runtime
|
|
41
41
|
prerelease: false
|
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
|
43
43
|
requirements:
|
|
44
44
|
- - "~>"
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: '3.
|
|
46
|
+
version: '3.3'
|
|
47
47
|
- !ruby/object:Gem::Dependency
|
|
48
48
|
name: nokogiri
|
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -249,6 +249,8 @@ files:
|
|
|
249
249
|
- website/compile.sh
|
|
250
250
|
- website/docs/button.html
|
|
251
251
|
- website/docs/button.md
|
|
252
|
+
- website/docs/container.html
|
|
253
|
+
- website/docs/container.md
|
|
252
254
|
- website/docs/toc.html
|
|
253
255
|
- website/docs/toc.md
|
|
254
256
|
- website/index.html
|