Files
ragflow/internal/parser/parser/office_parsers_shared.go
qinling0210 d549194562 Implement builtin chunk method as ingestion pipeline in GO (#16822)
### Summary

Implement builtin chunk mehtod as ingestion pipeline in GO
2026-07-13 13:51:40 +08:00

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)
}