We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ed2a62 commit cc3bb0aCopy full SHA for cc3bb0a
lib/github-pages/configuration.rb
@@ -153,7 +153,7 @@ def restrict_and_config_markdown_processor(config)
153
config["markdown"] = "CommonMarkGhPages"
154
config["commonmark"] = {
155
"extensions" => %w(table strikethrough autolink tagfilter),
156
- "options" => %w(footnotes),
+ "options" => %w(unsafe footnotes),
157
}
158
end
159
spec/github-pages/configuration_spec.rb
@@ -83,7 +83,7 @@
83
expect(effective_config["markdown"]).to eql("CommonMarkGhPages")
84
expect(effective_config["commonmark"]).to eql(
85
86
- "options" => %w(footnotes)
+ "options" => %w(unsafe footnotes)
87
)
88
89
0 commit comments