Remove unnecessary output files
This commit is contained in:
parent
de37aae009
commit
1fc1ab9dc6
6 changed files with 0 additions and 48 deletions
19
config.yml
19
config.yml
|
@ -11,25 +11,6 @@ params:
|
|||
|
||||
summaryLength: 40
|
||||
|
||||
outputFormats:
|
||||
markdown:
|
||||
name: "txt"
|
||||
mediaType: "text/plain"
|
||||
isPlainText: true
|
||||
outputs:
|
||||
home:
|
||||
- "html"
|
||||
- "rss"
|
||||
- "json"
|
||||
section:
|
||||
- "html"
|
||||
- "rss"
|
||||
- "txt"
|
||||
page:
|
||||
- "html"
|
||||
- "txt"
|
||||
- "json"
|
||||
|
||||
staticDir: "static/build"
|
||||
|
||||
buildFuture: true
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
{{ range $i, $e := .Data.Pages.ByTitle }}
|
||||
{{ if $i }}, {{ end }}
|
||||
"{{ .RelPermalink }}": {{ partial "page_data.json" . }}
|
||||
{{ end }}
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
# {{ .Title | plainify }}
|
||||
|
||||
{{ .RawContent | safeHTML }}
|
|
@ -1 +0,0 @@
|
|||
{{ partial "page_data.json" . }}
|
|
@ -1,3 +0,0 @@
|
|||
# {{ .Title | plainify }}
|
||||
|
||||
{{ .RawContent | safeHTML }}
|
|
@ -1,16 +0,0 @@
|
|||
{
|
||||
"id": "{{ .UniqueID }}",
|
||||
"title": "{{ .Title }}",
|
||||
"image": "{{ absURL .Params.image }}",
|
||||
"date": "{{ .Date.Format .Site.Params.iso8601 }}",
|
||||
"url": "{{ .Permalink }}",
|
||||
"link": "{{ .RelPermalink }}",
|
||||
"link_title": "{{ .LinkTitle }}",
|
||||
"content": {{ jsonify .RawContent }},
|
||||
"content_html": {{ jsonify (.Content | chomp) }},
|
||||
"summary": {{ jsonify (.Summary | plainify | chomp | htmlUnescape) }},
|
||||
"words": {{ .FuzzyWordCount }},
|
||||
"reading_time": {{ .ReadingTime }},
|
||||
"parent": "{{ if .Parent }}{{ .Parent.Title }}{{ end }}",
|
||||
"tags": {{ jsonify .Params.tags }}
|
||||
}
|
Loading…
Reference in a new issue