can inline remnant of old marker code

This commit is contained in:
Ted Unangst 2023-06-21 01:36:22 -04:00
parent e79a05b983
commit 91492f866e
2 changed files with 4 additions and 27 deletions

6
fun.go
View File

@ -211,7 +211,8 @@ func replaceimgsand(zap map[string]bool, absolute bool) func(node *html.Node) st
func translatechonk(ch *Chonk) {
noise := ch.Noise
if ch.Format == "markdown" {
noise = markitzero(noise)
var marker mz.Marker
noise = marker.Mark(noise)
}
var htf htfilter.Filter
htf.SpanClasses = allowedclasses
@ -300,7 +301,8 @@ func precipitate(honk *Honk) {
honk.Precis = noise[:idx]
noise = noise[idx+1:]
}
honk.Precis = markitzero(strings.TrimSpace(honk.Precis))
var marker mz.Marker
honk.Precis = marker.Mark(strings.TrimSpace(honk.Precis))
honk.Noise = noise
}
}

View File

@ -1,25 +0,0 @@
//
// Copyright (c) 2019 Ted Unangst <tedu@tedunangst.com>
//
// Permission to use, copy, modify, and distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice appear in all copies.
//
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
package main
import (
"humungus.tedunangst.com/r/webs/mz"
)
func markitzero(s string) string {
var marker mz.Marker
return marker.Mark(s)
}