fb36cfdfb2
With this extension a git hash can be easily referenced. The porters handbook versions chapter uses this extension as an example in the FreeBSD 14.0 version table. An example of use gitref:hash[repository="src|doc|ports",length=hash-longitude] The repository should be src, doc or ports. And if no length it's specified the macro will use 12 characters of the specified hash. PR: 253050 Submitted by: jhb@
43 lines
1.1 KiB
TOML
43 lines
1.1 KiB
TOML
# FreeBSD website
|
|
|
|
baseURL = "https://www.freebsd.org/"
|
|
title = "The FreeBSD Project"
|
|
copyright = "BSD 2-clause 'Simplified' License"
|
|
DefaultContentLanguage = "en"
|
|
defaultContentLanguageInSubdir = false
|
|
theme = "beastie"
|
|
disableKinds = [ "taxonomy", "taxonomyTerm" ]
|
|
disableLanguages = ["tr", "el"]
|
|
disablePathToLower = true
|
|
authors = [ "carlavilla@FreeBSD.org" ]
|
|
ignoreFiles = [ "report-sample.md$" ]
|
|
enableRobotsTXT = true
|
|
|
|
preserveTOC = true
|
|
|
|
[markup.asciidocExt]
|
|
preserveTOC = true
|
|
extensions = ["../shared/lib/man-macro.rb", "../shared/lib/inter-document-references-macro.rb", "../shared/lib/sectnumoffset-treeprocessor.rb", "../shared/lib/packages-macro.rb", "../shared/lib/git-macro.rb"]
|
|
|
|
staticDir = ["static", "shared"]
|
|
|
|
[outputs]
|
|
home = [ "HTML" ]
|
|
page = [ "HTML" ]
|
|
list = [ "HTML" ]
|
|
single = [ "HTML" ]
|
|
section = [ "HTML", "RSS" ]
|
|
|
|
[outputFormats]
|
|
[outputFormats.Calendar]
|
|
BaseName = "calendar"
|
|
IsHTML = true
|
|
IsPlainText = false
|
|
|
|
[outputFormats.RSS]
|
|
MediaType = "application/rss+xml"
|
|
BaseName = "feed"
|
|
IsHTML = true
|
|
IsPlainText = false
|
|
noUgly = true
|
|
Rel = "alternate"
|