Skip to content

Commit 661a686

Browse files
DevinTDHaKshitizGIT
authored andcommitted
Docs: add local config that skips model hub cards
1 parent c7749b9 commit 661a686

File tree

1 file changed

+235
-0
lines changed

1 file changed

+235
-0
lines changed

docs/_config_local.yml

Lines changed: 235 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,235 @@
1+
# NOTE: This config is intended for local development only. It skips the generation of the model hub cards.
2+
# Run with bundle install; bundle exec jekyll serve --incremental --trace --config _config_local.yml
3+
#
4+
# Welcome to Jekyll!
5+
#
6+
# This config file is meant for settings that affect your whole blog, values
7+
# which you are expected to set up once and rarely need to edit after that.
8+
# For technical reasons, this file is *NOT* reloaded automatically when you use
9+
# 'jekyll serve'. If you change this file, please restart the server process.
10+
#
11+
# ,--------. ,--. ,--. ,--.
12+
# '--. .--',---. \ `.' /,-' '-.
13+
# | | | .-. : .' \ '-. .-'
14+
# | | \ --. / .'. \ | |
15+
# `--' `----''--' '--' `--'
16+
17+
## !USE TEXT THEME
18+
# theme: jekyll-text-theme # Gem-based Jekyll Themes
19+
remote_theme: kitian616/jekyll-TeXt-theme # Jekyll Remote Theme, see https://github.com/benbalter/jekyll-remote-theme for more information.
20+
21+
## => Site Settings
22+
##############################
23+
text_skin: default # "default" (default), "dark", "forest", "ocean", "chocolate", "orange"
24+
highlight_theme: tomorrow-night-eighties # "default" (default), "tomorrow", "tomorrow-night", "tomorrow-night-eighties", "tomorrow-night-blue", "tomorrow-night-bright"
25+
url : # the base hostname & protocol for your site e.g. https://www.someone.com
26+
baseurl : # does not include hostname
27+
title : Spark NLP
28+
description: > # this means to ignore newlines until "Language & timezone"
29+
High Performance NLP with Apache Spark
30+
31+
32+
## => Language and Timezone
33+
##############################
34+
lang: # the language of your site, default as "en"
35+
timezone: # see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones for the available values
36+
37+
38+
## => Author and Social
39+
##############################
40+
author:
41+
type : # "person" (default), "organization"
42+
name :
43+
url :
44+
avatar : # path or url of avatar image (square)
45+
bio :
46+
email :
47+
facebook : # "user_name" the last part of your profile url, e.g. https://www.facebook.com/user_name
48+
twitter : # "user_name" the last part of your profile url, e.g. https://twitter.com/user_name
49+
weibo : # "user_id" the last part of your profile url, e.g. https://www.weibo.com/user_id/profile?...
50+
googleplus: # "user_id" the last part of your profile url, e.g. https://plus.google.com/u/0/user_id
51+
telegram : # "user_name" the last part of your profile url, e.g. https://t.me/user_name
52+
medium : # "user_name" the last part of your profile url, e.g. https://medium.com/user_name
53+
zhihu : # "user_name" the last part of your profile url, e.g. https://www.zhihu.com/people/user_name
54+
douban : # "user_name" the last part of your profile url, e.g. https://www.douban.com/people/user_name
55+
linkedin : # "user_name" the last part of your profile url, e.g. https://www.linkedin.com/in/user_name
56+
github : # "user_name" the last part of your profile url, e.g. https://github.com/user_name
57+
npm : # "user_name" the last part of your profile url, e.g. https://www.npmjs.com/~user_name
58+
59+
60+
## => GitHub Repository (if the site is hosted by GitHub)
61+
##############################
62+
repository: johnsnowlabs/spark-nlp
63+
repository_tree: master/docs
64+
65+
66+
## => Paths
67+
##############################
68+
paths:
69+
root : # title link url, "/" (default)
70+
home : # home layout url, "/" (default)
71+
archive : # "/archive.html" (default)
72+
rss : # "/feed.xml" (default)
73+
74+
75+
## => Post
76+
##############################
77+
## excerpt
78+
excerpt_separator: <!--more-->
79+
80+
## license
81+
license: # "CC-BY-4.0", "CC-BY-SA-4.0", "CC-BY-NC-4.0", "CC-BY-ND-4.0"
82+
83+
## TOC
84+
toc:
85+
selectors: # "h1,h2,h3" (default)
86+
87+
88+
## => Markdown Enhancements
89+
##############################
90+
## Mathjax
91+
mathjax: false # false (default), true
92+
mathjax_autoNumber: false # false (default), true
93+
94+
## Mermaid
95+
mermaid: false # false (default), true
96+
97+
## Chart
98+
chart: false # false (default), true
99+
100+
101+
## => Paginate
102+
##############################
103+
paginate: 8
104+
paginate_path: /page:num # don't change this unless for special need
105+
106+
107+
## => Sources
108+
##############################
109+
sources: bootcdn # bootcdn (default), unpkg
110+
111+
112+
## => Sharing
113+
##############################
114+
sharing:
115+
provider: false # false (default), "addtoany", "addthis", "custom"
116+
117+
## AddThis
118+
addthis:
119+
id: # AddThis pubid, e.g. ra-5xxxxxxxxxxx
120+
121+
122+
## => Comments
123+
##############################
124+
comments:
125+
provider: false # false (default), "disqus", "gitalk", "valine", "custom"
126+
127+
## Disqus
128+
disqus:
129+
shortname: # the Disqus shortname for the site
130+
131+
## Gitalk
132+
# please refer to https://github.com/gitalk/gitalk for more info.
133+
gitalk:
134+
clientID : # GitHub Application Client ID
135+
clientSecret: # GitHub Application Client Secret
136+
repository : # GitHub repo
137+
owner : # GitHub repo owner
138+
admin: # GitHub repo owner and collaborators, only these guys can initialize GitHub issues, IT IS A LIST.
139+
# - your GitHub Id
140+
141+
## Valine
142+
# please refer to https://valine.js.org/en/ for more info.
143+
valine:
144+
app_id : # LeanCloud App id
145+
app_key : # LeanCloud App key
146+
placeholder : # Prompt information
147+
visitor : # false (default)
148+
meta : # "[nick, mail, link]" (default) nickname, E-mail, Personal-site
149+
150+
151+
## => Pageview
152+
##############################
153+
pageview:
154+
provider: false # false (default), "leancloud", "custom"
155+
156+
## Leancloud
157+
leancloud:
158+
app_id : # LeanCloud App id
159+
app_key : # LeanCloud App key
160+
app_class : # LeanCloud App class
161+
162+
163+
## => Search
164+
##############################
165+
search:
166+
provider: false # "default" (default), false, "google", "custom"
167+
168+
## Google Custom Search Engine
169+
google:
170+
custom_search_engine_id: 005514095864560561482:hupbermpchw # Google Custom Search Engine ID
171+
172+
173+
## => Analytics
174+
##############################
175+
## analytics:
176+
## provider: "google" # false (default), "google", "custom"
177+
178+
## Google Analytics
179+
## google:
180+
## tracking_id : UA-70312582-2 # Google Analytics id for the site
181+
## anonymize_ip: false # Anonymize IP tracking for Analytics
182+
183+
184+
## => Build
185+
##############################
186+
markdown : kramdown
187+
highlighter : rouge
188+
permalink : date
189+
190+
exclude:
191+
- CHANGELOG.md
192+
- HOW_TO_RELEASE.md
193+
- Gemfile
194+
- Gemfile.lock
195+
- LICENSE
196+
- README-*.md
197+
- README.md
198+
- gulpfile.js
199+
- jekyll-text-theme.gemspec
200+
- package-lock.json
201+
- package.json
202+
- /node_modules
203+
- /screenshots
204+
- /test
205+
- /vendor
206+
- backup-*.json
207+
- /_frontend
208+
- /_scripts
209+
- /_posts
210+
211+
defaults:
212+
## docs
213+
- scope:
214+
path: "en"
215+
values:
216+
layout: article
217+
nav_key: docs
218+
aside:
219+
toc: true
220+
license: false
221+
demomenu: false
222+
show_edit_on_github: true
223+
show_date: true
224+
header:
225+
theme: light
226+
background: "#ecf0f1"
227+
# lightbox: true
228+
## => Plugins
229+
##############################
230+
plugins:
231+
- jekyll-feed
232+
- jekyll-paginate
233+
- jekyll-sitemap
234+
- jemoji
235+
- jekyll-incremental

0 commit comments

Comments
 (0)