type github.com/russross/blackfriday/v2.SPRenderer

19 uses

	github.com/russross/blackfriday/v2 (current package)
		html.go#L117: 	sr *SPRenderer
		smartypants.go#L24: type SPRenderer struct {
		smartypants.go#L124: func (r *SPRenderer) smartSingleQuote(out *bytes.Buffer, previousChar byte, text []byte) int {
		smartypants.go#L166: func (r *SPRenderer) smartParens(out *bytes.Buffer, previousChar byte, text []byte) int {
		smartypants.go#L191: func (r *SPRenderer) smartDash(out *bytes.Buffer, previousChar byte, text []byte) int {
		smartypants.go#L208: func (r *SPRenderer) smartDashLatex(out *bytes.Buffer, previousChar byte, text []byte) int {
		smartypants.go#L222: func (r *SPRenderer) smartAmpVariant(out *bytes.Buffer, previousChar byte, text []byte, quote byte, addNBSP bool) int {
		smartypants.go#L241: func (r *SPRenderer) smartAmp(angledQuotes, addNBSP bool) func(*bytes.Buffer, byte, []byte) int {
		smartypants.go#L252: func (r *SPRenderer) smartPeriod(out *bytes.Buffer, previousChar byte, text []byte) int {
		smartypants.go#L267: func (r *SPRenderer) smartBacktick(out *bytes.Buffer, previousChar byte, text []byte) int {
		smartypants.go#L282: func (r *SPRenderer) smartNumberGeneric(out *bytes.Buffer, previousChar byte, text []byte) int {
		smartypants.go#L324: func (r *SPRenderer) smartNumber(out *bytes.Buffer, previousChar byte, text []byte) int {
		smartypants.go#L352: func (r *SPRenderer) smartDoubleQuoteVariant(out *bytes.Buffer, previousChar byte, text []byte, quote byte) int {
		smartypants.go#L364: func (r *SPRenderer) smartDoubleQuote(out *bytes.Buffer, previousChar byte, text []byte) int {
		smartypants.go#L368: func (r *SPRenderer) smartAngledDoubleQuote(out *bytes.Buffer, previousChar byte, text []byte) int {
		smartypants.go#L372: func (r *SPRenderer) smartLeftAngle(out *bytes.Buffer, previousChar byte, text []byte) int {
		smartypants.go#L386: func NewSmartypantsRenderer(flags HTMLFlags) *SPRenderer {
		smartypants.go#L388: 		r SPRenderer
		smartypants.go#L437: func (r *SPRenderer) Process(w io.Writer, text []byte) {