-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbrowser.yml
235 lines (207 loc) · 5.52 KB
/
browser.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
source: content/browser
clean: false
frontmatter: true
metadata:
site:
title: SAFETAG
baseurl: '/@safetag/browser'
code:
current_branch: master
base: 'https://github.com/'
repo: 'contentascode/safetag-toolkit'
package: 'browser'
plugins:
- metalsmith-env:
variables:
CI: false
# - metalsmith-packages:
# key: packages
# Ignore backup folders created by safetag link command.
- metalsmith-ignore:
- '*.orig/*'
# Add tags to activities based on their location in the taxonomy page ASTs.
- metalsmith-markdown-taxonomy:
pattern: 'categories.md'
# Transclude :[]() with hercule
- metalsmith-transclude-transform:
permalinks: true
folders: true
- metalsmith-transclude:
warning: true
comments: true
# Merge frontmatter of transcluded files into the parent file frontmatter.
frontmatter: true
# Process .
patterns:
# - categories/**/*.md
- methods/**/*.md
- activities/**/*.md
- index.guide.md
# Deal with top level frontmatter.
# - metalsmith-matters: true
# Load activities as a collection
- metalsmith-dynamic-collections:
activities: activities/*.md
# # Copy client side assets
# - metalsmith-assets-improved:
# replace: all
# src: code/assets
# dest: .
#
# # Add lodash
# - metalsmith-assets-improved:
# replace: old
# src: node_modules/lodash/lodash.min.js
# dest: ./js/lodash.min.js
#
# # Add SortableJS
# - metalsmith-assets-improved:
# replace: old
# src: node_modules/sortablejs/Sortable.min.js
# dest: ./js/sortable.min.js
# Copy filter.js module. Using old version from previous project instead.
# - metalsmith-assets-improved:
# replace: old
# src: node_modules/filter.js/dist
# dest: ./js
# # Copy js-yaml module
# - metalsmith-assets-improved:
# replace: old
# src: node_modules/js-yaml/dist
# dest: ./js
#
# # Copy filter.js module example styles and jquery dependencies
# - metalsmith-assets-improved:
# replace: old
# src: node_modules/filter.js/examples
# dest: ./filter.js
# - metalsmith-assets-improved:
# replace: old
# src: node_modules/filter.js/examples/data
# dest: ./data
# Copy client side assets
- metalsmith-assets-copy:
replace: all
src: code/assets
dest: code/assets
# Copy next.js app structure
- metalsmith-assets-copy:
replace: all
src: node_modules/safetag-next
dest: .
except:
# TODO: Remove default lessons
- 'static/content'
- 'node_modules'
- '*.git'
- '.next'
# Copy content package package.json
- metalsmith-assets-copy:
replace: all
src: package.json
dest: ../package.json
# Add metadata
- metalsmith-filemetadata:
- pattern: 'activities/*.md'
preserve: 'true'
metadata:
content_type: activity
lunr: true
- pattern: 'activities/*/*.md'
preserve: 'true'
metadata:
content_type: task
# Add path information
- metalsmith-paths:
property: paths
directoryIndex: index.html
# Copy source markdown file link
- metalsmith-metacopy:
file:
- src: paths.href
dest: source
# DEBUG:
# - metalsmith-debug: {}
# - metalsmith-writemetadata:
# pattern: [ "**/*.md "]
# yaml: true
# ignorekeys:
# - contents
# - stats
# - mode
# Process metadata
- metalsmith-lunr:
ref: 'content'
fields:
name: 10
content_type: 10
activity: 10
context: 10
framework: 10
situation: 10
tool: 10
description: 10
contents: 10
# keywords: 10
- metalsmith-search-meta:
path: searchMeta.json
pad: true
properties:
- id
- name
- content_type
- content_type
- activity
- context
- framework
- tool
- variations
- description
- duration
- metalsmith-debug: {}
- metalsmith-contentascode-next-index:
patterns: '**/*.md'
destination: .
# Interpret Markdown with Pandoc
- metalsmith-pandoc:
pattern: '**/index.guide.md'
from: markdown_github+definition_lists+raw_html+markdown_in_html_blocks+link_attributes+header_attributes+footnotes+superscript+subscript
args:
[
'--standalone',
'--table-of-contents',
'--toc-depth=2',
'-V toc-title:"Table of Contents"',
'--template=/Users/jun/.content/packages/safetag-toolkit/code/template.markdown',
]
- metalsmith-pandoc:
pattern: '**/*.md'
from: markdown_github+definition_lists+raw_html+markdown_in_html_blocks+link_attributes+header_attributes+footnotes+superscript+subscript
# - metalsmith-markdown:
# gfm: true
#
# - metalsmith-permalinks:
# relative: true
# linksets:
# - match:
# collection: posts
# pattern: blog/:datebasename
# - match:
# collection: pages
# pattern: ':dir/:title'
#
# # Wrap rendered file in html templates.
# - metalsmith-layouts:
# engine: pug
# pattern: '**/*.html'
# directory: code/templates
# includes: includes
# default: page.pug
# cache: true
#
- metalsmith-contentascode-next:
install: true
start: true
patterns:
- '**/*.html'
destination: static/content