1
Fork 0

Remove unnecessary output files

This commit is contained in:
Jake Howard 2018-08-16 20:42:02 +01:00
parent de37aae009
commit 1fc1ab9dc6
Signed by: jake
GPG key ID: 57AFB45680EDD477
6 changed files with 0 additions and 48 deletions

View file

@ -11,25 +11,6 @@ params:
summaryLength: 40 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" staticDir: "static/build"
buildFuture: true buildFuture: true

View file

@ -1,6 +0,0 @@
{
{{ range $i, $e := .Data.Pages.ByTitle }}
{{ if $i }}, {{ end }}
"{{ .RelPermalink }}": {{ partial "page_data.json" . }}
{{ end }}
}

View file

@ -1,3 +0,0 @@
# {{ .Title | plainify }}
{{ .RawContent | safeHTML }}

View file

@ -1 +0,0 @@
{{ partial "page_data.json" . }}

View file

@ -1,3 +0,0 @@
# {{ .Title | plainify }}
{{ .RawContent | safeHTML }}

View file

@ -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 }}
}