-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaction.yml
More file actions
35 lines (35 loc) · 1.2 KB
/
Copy pathaction.yml
File metadata and controls
35 lines (35 loc) · 1.2 KB
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
name: "Markdown-HTML"
description: "Render markdown to HTML files"
inputs:
input_files:
description: "A JSON list of a list of paths to markdown files to render in to HTML files"
required: true
output_files:
description: "A JSON list of paths to save the rendered HTML files to"
required: true
exclude_duplicates:
description: "(boolean) Whether or not a file should be automatically excluded from being included more than once in a given output file"
required: true
default: true
builtin_stylesheet:
description: "An optional path to a CSS file that will be included as a <style> block in every output file"
required: true
default: ""
extensions:
description: "A JSON list of extensions to be passed to Python markdown"
required: true
default: '["extra"]'
extension_configs:
description: "A JSON object of extension configurations"
required: true
default: "{}"
packages:
description: "A space separated list of Python packages to be installed before execution (useful for installing third-party markdown extensions)"
required: true
default: ""
runs:
using: 'docker'
image: 'Dockerfile'
branding:
icon: file-text
color: white