2019-11-06 14:10:47 -05:00
|
|
|
// Copyright 2019 The Hugo Authors. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
// Package goldmark_config holds Goldmark related configuration.
|
|
|
|
package goldmark_config
|
|
|
|
|
2020-01-05 05:29:22 -05:00
|
|
|
const (
|
|
|
|
AutoHeadingIDTypeGitHub = "github"
|
|
|
|
AutoHeadingIDTypeGitHubAscii = "github-ascii"
|
2020-01-05 05:52:00 -05:00
|
|
|
AutoHeadingIDTypeBlackfriday = "blackfriday"
|
2020-01-05 05:29:22 -05:00
|
|
|
)
|
|
|
|
|
2023-05-18 05:05:56 -04:00
|
|
|
// Default holds the default Goldmark configuration.
|
2019-11-06 14:10:47 -05:00
|
|
|
var Default = Config{
|
|
|
|
Extensions: Extensions{
|
2023-04-12 04:15:02 -04:00
|
|
|
Typographer: Typographer{
|
|
|
|
Disable: false,
|
|
|
|
LeftSingleQuote: "‘",
|
|
|
|
RightSingleQuote: "’",
|
|
|
|
LeftDoubleQuote: "“",
|
|
|
|
RightDoubleQuote: "”",
|
|
|
|
EnDash: "–",
|
|
|
|
EmDash: "—",
|
|
|
|
Ellipsis: "…",
|
|
|
|
LeftAngleQuote: "«",
|
|
|
|
RightAngleQuote: "»",
|
|
|
|
Apostrophe: "’",
|
|
|
|
},
|
2022-03-09 12:26:32 -05:00
|
|
|
Footnote: true,
|
|
|
|
DefinitionList: true,
|
|
|
|
Table: true,
|
|
|
|
Strikethrough: true,
|
|
|
|
Linkify: true,
|
|
|
|
LinkifyProtocol: "https",
|
|
|
|
TaskList: true,
|
2023-08-30 07:08:45 -04:00
|
|
|
CJK: CJK{
|
2023-10-29 05:13:56 -04:00
|
|
|
Enable: false,
|
|
|
|
EastAsianLineBreaks: false,
|
|
|
|
EastAsianLineBreaksStyle: "simple",
|
|
|
|
EscapedSpace: false,
|
2023-08-30 07:08:45 -04:00
|
|
|
},
|
2019-11-06 14:10:47 -05:00
|
|
|
},
|
|
|
|
Renderer: Renderer{
|
|
|
|
Unsafe: false,
|
|
|
|
},
|
|
|
|
Parser: Parser{
|
2022-12-03 06:33:48 -05:00
|
|
|
AutoHeadingID: true,
|
|
|
|
AutoHeadingIDType: AutoHeadingIDTypeGitHub,
|
|
|
|
WrapStandAloneImageWithinParagraph: true,
|
2021-02-07 12:08:46 -05:00
|
|
|
Attribute: ParserAttribute{
|
|
|
|
Title: true,
|
|
|
|
Block: false,
|
|
|
|
},
|
2019-11-06 14:10:47 -05:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
// Config configures Goldmark.
|
|
|
|
type Config struct {
|
|
|
|
Renderer Renderer
|
|
|
|
Parser Parser
|
|
|
|
Extensions Extensions
|
|
|
|
}
|
|
|
|
|
|
|
|
type Extensions struct {
|
2023-04-12 04:15:02 -04:00
|
|
|
Typographer Typographer
|
2019-11-06 14:10:47 -05:00
|
|
|
Footnote bool
|
|
|
|
DefinitionList bool
|
|
|
|
|
|
|
|
// GitHub flavored markdown
|
2022-03-09 12:26:32 -05:00
|
|
|
Table bool
|
|
|
|
Strikethrough bool
|
|
|
|
Linkify bool
|
|
|
|
LinkifyProtocol string
|
|
|
|
TaskList bool
|
2023-08-30 07:08:45 -04:00
|
|
|
CJK CJK
|
2019-11-06 14:10:47 -05:00
|
|
|
}
|
|
|
|
|
2023-04-12 04:15:02 -04:00
|
|
|
// Typographer holds typographer configuration.
|
|
|
|
type Typographer struct {
|
|
|
|
// Whether to disable typographer.
|
|
|
|
Disable bool
|
|
|
|
|
|
|
|
// Value used for left single quote.
|
|
|
|
LeftSingleQuote string
|
|
|
|
// Value used for right single quote.
|
|
|
|
RightSingleQuote string
|
|
|
|
// Value used for left double quote.
|
|
|
|
LeftDoubleQuote string
|
|
|
|
// Value used for right double quote.
|
|
|
|
RightDoubleQuote string
|
|
|
|
// Value used for en dash.
|
|
|
|
EnDash string
|
|
|
|
// Value used for em dash.
|
|
|
|
EmDash string
|
|
|
|
// Value used for ellipsis.
|
|
|
|
Ellipsis string
|
|
|
|
// Value used for left angle quote.
|
|
|
|
LeftAngleQuote string
|
|
|
|
// Value used for right angle quote.
|
|
|
|
RightAngleQuote string
|
|
|
|
// Value used for apostrophe.
|
|
|
|
Apostrophe string
|
|
|
|
}
|
|
|
|
|
2023-08-30 07:08:45 -04:00
|
|
|
type CJK struct {
|
|
|
|
// Whether to enable CJK support.
|
|
|
|
Enable bool
|
|
|
|
|
|
|
|
// Whether softline breaks between east asian wide characters should be ignored.
|
|
|
|
EastAsianLineBreaks bool
|
|
|
|
|
2023-10-29 05:13:56 -04:00
|
|
|
// Styles of Line Breaking of EastAsianLineBreaks: "simple" or "css3draft"
|
|
|
|
EastAsianLineBreaksStyle string
|
|
|
|
|
2023-08-30 07:08:45 -04:00
|
|
|
// Whether a '\' escaped half-space(0x20) should not be rendered.
|
|
|
|
EscapedSpace bool
|
|
|
|
}
|
|
|
|
|
2019-11-06 14:10:47 -05:00
|
|
|
type Renderer struct {
|
|
|
|
// Whether softline breaks should be rendered as '<br>'
|
|
|
|
HardWraps bool
|
|
|
|
|
|
|
|
// XHTML instead of HTML5.
|
|
|
|
XHTML bool
|
|
|
|
|
|
|
|
// Allow raw HTML etc.
|
|
|
|
Unsafe bool
|
|
|
|
}
|
|
|
|
|
|
|
|
type Parser struct {
|
|
|
|
// Enables custom heading ids and
|
|
|
|
// auto generated heading ids.
|
|
|
|
AutoHeadingID bool
|
|
|
|
|
2020-01-05 05:29:22 -05:00
|
|
|
// The strategy to use when generating heading IDs.
|
|
|
|
// Available options are "github", "github-ascii".
|
|
|
|
// Default is "github", which will create GitHub-compatible anchor names.
|
|
|
|
AutoHeadingIDType string
|
2020-01-04 05:28:19 -05:00
|
|
|
|
2019-11-06 14:10:47 -05:00
|
|
|
// Enables custom attributes.
|
2021-02-07 12:08:46 -05:00
|
|
|
Attribute ParserAttribute
|
2022-12-03 06:33:48 -05:00
|
|
|
|
|
|
|
// Whether to wrap stand-alone images within a paragraph or not.
|
|
|
|
WrapStandAloneImageWithinParagraph bool
|
2021-02-07 12:08:46 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
type ParserAttribute struct {
|
|
|
|
// Enables custom attributes for titles.
|
|
|
|
Title bool
|
|
|
|
// Enables custom attributeds for blocks.
|
|
|
|
Block bool
|
2019-11-06 14:10:47 -05:00
|
|
|
}
|