mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-24 01:16:43 +08:00
13 lines
218 B
Go
13 lines
218 B
Go
//go:build !cgo
|
|
|
|
package parser
|
|
|
|
import "html"
|
|
|
|
// OfficeOxide is the lib_type identifier for office_oxide backend.
|
|
const OfficeOxide = "office_oxide"
|
|
|
|
func htmlEscape(s string) string {
|
|
return html.EscapeString(s)
|
|
}
|