Remove spurious Indent style element

This commit is contained in:
Christian Muehlhaeuser
2019-12-05 13:29:03 +01:00
parent 924d332de2
commit 12d8828d4b
-3
View File
@@ -29,7 +29,6 @@ const (
CodeBlock CodeBlock
Softbreak Softbreak
Hardbreak Hardbreak
Indent
Code Code
HTMLSpan HTMLSpan
Table Table
@@ -175,8 +174,6 @@ func keyToType(key string) (StyleType, error) {
return Softbreak, nil return Softbreak, nil
case "hardbreak": case "hardbreak":
return Hardbreak, nil return Hardbreak, nil
case "indent":
return Indent, nil
case "code": case "code":
return Code, nil return Code, nil
case "html_span": case "html_span":