moved from TOML to YAML stucture
parent
55cd7fe180
commit
23b0d2bbb6
@ -1,92 +0,0 @@
|
|||||||
baseURL = "https://no-js.club"
|
|
||||||
title = "The no-JS.club | Promenade for JavaScript freed websites"
|
|
||||||
author = "Frank"
|
|
||||||
copyright = "Copyright © 2022, Frank Homburg."
|
|
||||||
languageCode = "en-US"
|
|
||||||
enableRobotsTXT = true
|
|
||||||
|
|
||||||
[params]
|
|
||||||
description = "Showcase of JavaScript liberated websites"
|
|
||||||
favicon = "favicon.ico"
|
|
||||||
title = "The no-JS Club | Showcase of JavaScript liberated websites"
|
|
||||||
hideMadeWithLine = false
|
|
||||||
dateFormat = "2006-01-02"
|
|
||||||
|
|
||||||
[menu]
|
|
||||||
[[menu.main]]
|
|
||||||
name = "Members"
|
|
||||||
url = "/members/"
|
|
||||||
weight = 10
|
|
||||||
|
|
||||||
[[menu.main]]
|
|
||||||
name = "FAQ"
|
|
||||||
url = "/faq/"
|
|
||||||
weight = 20
|
|
||||||
|
|
||||||
[[menu.main]]
|
|
||||||
name = "Ticket"
|
|
||||||
url = "https://todo.sr.ht/~hmbrg/no-JS.club"
|
|
||||||
weight = 30
|
|
||||||
|
|
||||||
[markup]
|
|
||||||
[markup.highlight]
|
|
||||||
anchorLineNos = false
|
|
||||||
codeFences = true
|
|
||||||
guessSyntax = false
|
|
||||||
hl_Lines = ''
|
|
||||||
lineAnchors = ''
|
|
||||||
lineNoStart = 1
|
|
||||||
lineNos = true
|
|
||||||
lineNumbersInTable = true
|
|
||||||
noClasses = true
|
|
||||||
style = 'dracula'
|
|
||||||
tabWidth = 2
|
|
||||||
|
|
||||||
defaultMarkdownHandler = 'goldmark'
|
|
||||||
[markup.asciidocExt]
|
|
||||||
backend = 'html5'
|
|
||||||
extensions = []
|
|
||||||
failureLevel = 'fatal'
|
|
||||||
noHeaderOrFooter = true
|
|
||||||
preserveTOC = false
|
|
||||||
safeMode = 'unsafe'
|
|
||||||
sectionNumbers = false
|
|
||||||
trace = false
|
|
||||||
verbose = false
|
|
||||||
workingFolderCurrent = false
|
|
||||||
[markup.asciidocExt.attributes]
|
|
||||||
|
|
||||||
[markup.goldmark]
|
|
||||||
[markup.goldmark.extensions]
|
|
||||||
definitionList = true
|
|
||||||
footnote = true
|
|
||||||
linkify = true
|
|
||||||
strikethrough = true
|
|
||||||
table = true
|
|
||||||
taskList = true
|
|
||||||
typographer = true
|
|
||||||
|
|
||||||
[markup.goldmark.parser]
|
|
||||||
autoHeadingID = true
|
|
||||||
autoHeadingIDType = 'github'
|
|
||||||
[markup.goldmark.parser.attribute]
|
|
||||||
block = false
|
|
||||||
title = true
|
|
||||||
|
|
||||||
[markup.goldmark.renderer]
|
|
||||||
hardWraps = false
|
|
||||||
unsafe = true
|
|
||||||
xhtml = false
|
|
||||||
|
|
||||||
[markup.tableOfContents]
|
|
||||||
endLevel = 3
|
|
||||||
ordered = false
|
|
||||||
startLevel = 2
|
|
||||||
|
|
||||||
[imaging]
|
|
||||||
resampleFilter = "box"
|
|
||||||
quality = 75
|
|
||||||
anchor = "smart"
|
|
||||||
bgColor = "#ffffff"
|
|
||||||
disableDate = true
|
|
||||||
disableLatLong = true
|
|
@ -0,0 +1,87 @@
|
|||||||
|
baseURL: 'https://no-js.club'
|
||||||
|
title: The no-JS.club | Promenade for JavaScript freed websites
|
||||||
|
author: Frank
|
||||||
|
copyright: 'Copyright © 2022, Frank Homburg.'
|
||||||
|
languageCode: en-US
|
||||||
|
enableRobotsTXT: true
|
||||||
|
|
||||||
|
params:
|
||||||
|
description: Showcase of JavaScript liberated websites
|
||||||
|
favicon: favicon.ico
|
||||||
|
title: The no-JS Club | Showcase of JavaScript liberated websites
|
||||||
|
hideMadeWithLine: false
|
||||||
|
dateFormat: '2006-01-02'
|
||||||
|
menu:
|
||||||
|
main:
|
||||||
|
- name: Members
|
||||||
|
url: /members/
|
||||||
|
weight: 10
|
||||||
|
|
||||||
|
- name: FAQ
|
||||||
|
url: /faq/
|
||||||
|
weight: 20
|
||||||
|
|
||||||
|
- name: Ticket
|
||||||
|
url: 'https://todo.sr.ht/~hmbrg/no-JS.club'
|
||||||
|
weight: 30
|
||||||
|
|
||||||
|
markup:
|
||||||
|
highlight:
|
||||||
|
anchorLineNos: false
|
||||||
|
codeFences: true
|
||||||
|
guessSyntax: false
|
||||||
|
hl_Lines: ''
|
||||||
|
lineAnchors: ''
|
||||||
|
lineNoStart: 1
|
||||||
|
lineNos: true
|
||||||
|
lineNumbersInTable: true
|
||||||
|
noClasses: true
|
||||||
|
style: dracula
|
||||||
|
tabWidth: 2
|
||||||
|
defaultMarkdownHandler: goldmark
|
||||||
|
|
||||||
|
asciidocExt:
|
||||||
|
backend: html5
|
||||||
|
extensions: []
|
||||||
|
failureLevel: fatal
|
||||||
|
noHeaderOrFooter: true
|
||||||
|
preserveTOC: false
|
||||||
|
safeMode: unsafe
|
||||||
|
sectionNumbers: false
|
||||||
|
trace: false
|
||||||
|
verbose: false
|
||||||
|
workingFolderCurrent: false
|
||||||
|
attributes: {}
|
||||||
|
|
||||||
|
goldmark:
|
||||||
|
extensions:
|
||||||
|
definitionList: true
|
||||||
|
footnote: true
|
||||||
|
linkify: true
|
||||||
|
strikethrough: true
|
||||||
|
table: true
|
||||||
|
taskList: true
|
||||||
|
typographer: true
|
||||||
|
parser:
|
||||||
|
autoHeadingID: true
|
||||||
|
autoHeadingIDType: github
|
||||||
|
attribute:
|
||||||
|
block: false
|
||||||
|
title: true
|
||||||
|
renderer:
|
||||||
|
hardWraps: false
|
||||||
|
unsafe: true
|
||||||
|
xhtml: false
|
||||||
|
|
||||||
|
tableOfContents:
|
||||||
|
endLevel: 3
|
||||||
|
ordered: false
|
||||||
|
startLevel: 2
|
||||||
|
|
||||||
|
imaging:
|
||||||
|
resampleFilter: box
|
||||||
|
quality: 75
|
||||||
|
anchor: smart
|
||||||
|
bgColor: '#ffffff'
|
||||||
|
disableDate: true
|
||||||
|
disableLatLong: true
|
Loading…
Reference in New Issue