Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1ad6c28

Browse files
authored
Merge branch 'master' into update-SelectColumn-UI-component-documentation
2 parents d317ebc + dc4d8f5 commit 1ad6c28

File tree

341 files changed

+2116
-2097
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

341 files changed

+2116
-2097
lines changed

Gemfile.lock

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
GIT
22
remote: https://github.com/magento-devdocs/devdocs-theme.git
3-
revision: 42b6ebb8748ae5a3dc836d6891063dbebf31cbfe
3+
revision: e1a4ff6880d5047cb8e14ac44849aca8ffaecf2a
44
specs:
55
devdocs (7)
66
jekyll (>= 4.0)
@@ -25,13 +25,13 @@ GEM
2525
ffi (>= 1.3.0)
2626
eventmachine (1.2.7)
2727
exifr (1.3.6)
28-
faraday (0.17.0)
28+
faraday (0.17.1)
2929
multipart-post (>= 1.2, < 3)
30-
ffi (1.11.1)
30+
ffi (1.11.3)
3131
filesize (0.2.0)
3232
forwardable-extended (2.6.0)
3333
fspath (3.1.2)
34-
html-proofer (3.13.0)
34+
html-proofer (3.14.1)
3535
addressable (~> 2.3)
3636
mercenary (~> 0.3)
3737
nokogiri (~> 1.10)
@@ -49,7 +49,7 @@ GEM
4949
image_size (>= 1.5, < 3)
5050
in_threads (~> 1.3)
5151
progress (~> 3.0, >= 3.0.1)
52-
image_optim_pack (0.6.0)
52+
image_optim_pack (0.6.0.20191208)
5353
fspath (>= 2.1, < 4)
5454
image_optim (~> 0.19)
5555
image_size (2.0.2)
@@ -86,7 +86,7 @@ GEM
8686
jekyll (>= 3.3, < 5.0)
8787
jekyll-sass-converter (2.0.1)
8888
sassc (> 2.0.1, < 3.0)
89-
jekyll-sitemap (1.3.1)
89+
jekyll-sitemap (1.4.0)
9090
jekyll (>= 3.7, < 5.0)
9191
jekyll-titles-from-headings (0.5.3)
9292
jekyll (>= 3.3, < 5.0)
@@ -99,7 +99,7 @@ GEM
9999
launchy (2.4.3)
100100
addressable (~> 2.3)
101101
liquid (4.0.3)
102-
listen (3.2.0)
102+
listen (3.2.1)
103103
rb-fsevent (~> 0.10, >= 0.10.3)
104104
rb-inotify (~> 0.9, >= 0.9.10)
105105
mdl (0.7.0)
@@ -110,26 +110,26 @@ GEM
110110
mercenary (0.3.6)
111111
mini_portile2 (2.4.0)
112112
mixlib-cli (2.1.1)
113-
mixlib-config (3.0.1)
113+
mixlib-config (3.0.5)
114114
tomlrb
115115
multipart-post (2.1.1)
116116
netrc (0.11.0)
117-
nokogiri (1.10.4)
117+
nokogiri (1.10.7)
118118
mini_portile2 (~> 2.4.0)
119119
octokit (4.14.0)
120120
sawyer (~> 0.8.0, >= 0.5.3)
121-
parallel (1.18.0)
121+
parallel (1.19.1)
122122
pathutil (0.16.2)
123123
forwardable-extended (~> 2.6)
124124
progress (3.5.2)
125125
progressbar (1.10.1)
126126
public_suffix (4.0.1)
127127
rainbow (3.0.0)
128-
rake (12.3.2)
128+
rake (13.0.1)
129129
rb-fsevent (0.10.3)
130130
rb-inotify (0.10.0)
131131
ffi (~> 1.0)
132-
rouge (3.12.0)
132+
rouge (3.13.0)
133133
safe_yaml (1.0.5)
134134
sassc (2.2.1)
135135
ffi (~> 1.9)
@@ -139,7 +139,7 @@ GEM
139139
terminal-table (1.8.0)
140140
unicode-display_width (~> 1.1, >= 1.1.1)
141141
thor (0.20.3)
142-
tomlrb (1.2.8)
142+
tomlrb (1.2.9)
143143
typhoeus (1.3.1)
144144
ethon (>= 0.9.0)
145145
unicode-display_width (1.6.0)

Rakefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,11 @@ task index: %w[init] do
8181
'algolia',
8282
'--config=_config.yml,_config.index.yml'
8383
end
84+
85+
desc 'Convert HTML text to kramdown in your terminal'
86+
task :convert do
87+
puts 'Paste HTML text followed by a new line and press Control-D.'.magenta
88+
result = `bin/kramdown --input=html --output=kramdown`
89+
puts 'Converted text:'.magenta
90+
puts result.bold
91+
end

bin/kramdown

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
#!/usr/bin/env ruby
2+
# frozen_string_literal: true
3+
4+
#
5+
# This file was generated by Bundler.
6+
#
7+
# The application 'kramdown' is installed as part of a gem, and
8+
# this file is here to facilitate running it.
9+
#
10+
11+
require "pathname"
12+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
13+
Pathname.new(__FILE__).realpath)
14+
15+
bundle_binstub = File.expand_path("../bundle", __FILE__)
16+
17+
if File.file?(bundle_binstub)
18+
if File.read(bundle_binstub, 300) =~ /This file was generated by Bundler/
19+
load(bundle_binstub)
20+
else
21+
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
22+
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
23+
end
24+
end
25+
26+
require "rubygems"
27+
require "bundler/setup"
28+
29+
load Gem.bin_path("kramdown", "kramdown")

src/_data/main-nav.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,31 +5,37 @@
55
children:
66
- label: Cloud Guide
77
url: /cloud/bk-cloud.html
8+
versionless: true
89

910
- label: Cloud Architecture
1011
url: /cloud/architecture/cloud-architecture.html
12+
versionless: true
1113

1214
- label: Upgrades and Patches
1315
url: /cloud/project/project-upgrade-parent.html
16+
versionless: true
1417

1518
- label: Release Notes
1619
url: /cloud/release-notes/cloud-tools.html
20+
versionless: true
1721

1822
- label: Cloud development
1923
children:
2024
- label: Local development
2125
url: /cloud/setup/first-time-setup.html
26+
versionless: true
2227

2328
- label: Launch Docker
2429
url: /cloud/docker/docker-config.html
25-
exclude_versions: ["2.0"]
30+
versionless: true
2631

2732
- label: Docker quick reference
2833
url: /cloud/docker/docker-quick-reference.html
29-
exclude_versions: ["2.0"]
34+
versionless: true
3035

3136
- label: Configure Environments
3237
url: /cloud/env/environments.html
38+
versionless: true
3339

3440
- label: Setup
3541
children:

0 commit comments

Comments
 (0)