Merge pull request 'modules/markup/markdown/ast: Drop IsColorPreview' (#2746) from algernon/forgejo:gitea/cherry-pick/29833/dead-code-removal into forgejo
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/2746 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org>
This commit is contained in:
commit
b5775f6d6e
2 changed files with 0 additions and 8 deletions
|
@ -222,7 +222,6 @@ package "code.gitea.io/gitea/modules/markup/markdown"
|
||||||
func IsSummary
|
func IsSummary
|
||||||
func IsTaskCheckBoxListItem
|
func IsTaskCheckBoxListItem
|
||||||
func IsIcon
|
func IsIcon
|
||||||
func IsColorPreview
|
|
||||||
func RenderRawString
|
func RenderRawString
|
||||||
|
|
||||||
package "code.gitea.io/gitea/modules/markup/markdown/math"
|
package "code.gitea.io/gitea/modules/markup/markdown/math"
|
||||||
|
|
|
@ -174,10 +174,3 @@ func NewColorPreview(color []byte) *ColorPreview {
|
||||||
Color: color,
|
Color: color,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// IsColorPreview returns true if the given node implements the ColorPreview interface,
|
|
||||||
// otherwise false.
|
|
||||||
func IsColorPreview(node ast.Node) bool {
|
|
||||||
_, ok := node.(*ColorPreview)
|
|
||||||
return ok
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue