-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmobile.yml
226 lines (192 loc) · 4.78 KB
/
mobile.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
---
source: content
clean: true
frontmatter: true
metadata:
site:
title: Activist Apprentice
baseurl: '/@apprentice/preview'
code:
current_branch: master
base: 'https://github.com/'
repo: 'contentascode/activist-apprentice-course-template'
package: ''
plugins:
- metalsmith-packagejson: {}
- metalsmith-env:
variables:
CI: false
# - metalsmith-packages:
# key: packages
# Ignore backup folders created by docsmith 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:
comments: true
# Merge frontmatter of transcluded files into the parent file frontmatter.
frontmatter: true
# Process .
patterns:
- index.md
# Deal with top level frontmatter.
# - metalsmith-matters: true
# Add path information
- metalsmith-paths:
property: paths
directoryIndex: index.html
# Load activities as a collection
- metalsmith-dynamic-collections:
index: 'index.md'
pages: ':page.md'
chapter_index: ':chapter/index.md'
chapters: ':chapter/:section.md'
- metalsmith-title:
remove: true
- metalsmith-debug: {}
# Copy client side assets
- metalsmith-assets-copy:
replace: all
src: code/assets
dest: code/assets
# Copy mobile app structure
- metalsmith-assets-copy:
replace: all
src: node_modules/contentascode-mobile
dest: .
except:
# TODO: Remove default lessons
# - 'content'
- 'node_modules'
- '*.git'
- '.expo'
# Copy content package package.json
- metalsmith-assets-copy:
replace: all
src: package.json
dest: ../package.json
# Copy node_modules to make contentascode-mobile npm start work.
# This should instead use npm install.
# - metalsmith-assets-copy:
# replace: all
# dereference: true
# src: node_modules/
# dest: ../node_modules
# except:
# - '*.git'
# - 'contentascode-mobile'
- metalsmith-debug: {}
# Add metadata
- metalsmith-filemetadata:
- pattern: "index.md"
preserve: 'true'
metadata:
layout: index.pug
- pattern: "*/index.md"
preserve: 'true'
metadata:
layout: chapter.pug
- pattern: "*/*.md"
preserve: 'true'
metadata:
layout: page.pug
# Copy raw markdown
- metalsmith-metacopy:
file:
- patterns: "*/index.md"
src: contents
dest: raw
# Copy file name metadata
- metalsmith-metacopy:
file:
- src: paths.name
dest: name
# 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:
fields:
name: 10
content_type: 10
activity: 10
context: 10
framework: 10
situation: 10
tool: 10
description: 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
# Interpret Markdown with Pandoc
# - 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-metacopy:
file:
- pattern: "*/*.md"
src: paths.dir
dest: dir
- metalsmith-permalinks:
relative: true
# pattern: ":name"
linksets:
- match:
collection: index
pattern: "."
- match:
collection: pages
pattern: ":page"
- match:
collection: chapter_index
pattern: ":chapter"
- match:
collection: chapters
pattern: ":chapter/:section"
# Wrap rendered file in html templates.
- metalsmith-layouts:
engine: pug
pattern: "**/*.md"
directory: code/mobile
includes: includes
default: js.pug
cache: false
- metalsmith-contentascode-mobile:
pattern: "**/*.md"
destination: content
install: true
start: true
expo:
privacy: unlisted