mirror of
https://github.com/rystaf/mlmym.git
synced 2024-11-25 06:25:46 +00:00
fix community bangs
This commit is contained in:
parent
556cc785f5
commit
f7c2910b07
|
@ -133,6 +133,8 @@ var funcMap = template.FuncMap{
|
||||||
var buf bytes.Buffer
|
var buf bytes.Buffer
|
||||||
re := regexp.MustCompile(`\s---\s`)
|
re := regexp.MustCompile(`\s---\s`)
|
||||||
body = re.ReplaceAllString(body, "\n***\n")
|
body = re.ReplaceAllString(body, "\n***\n")
|
||||||
|
// community bangs
|
||||||
|
body = RegReplace(body, `!([a-zA-Z0-9_]+)@([a-zA-Z0-9\.\-]+)`, `[!$1@$2](/c/$1@$2)`)
|
||||||
if err := md.Convert([]byte(body), &buf); err != nil {
|
if err := md.Convert([]byte(body), &buf); err != nil {
|
||||||
fmt.Println(err)
|
fmt.Println(err)
|
||||||
return template.HTML(body)
|
return template.HTML(body)
|
||||||
|
@ -164,8 +166,6 @@ var funcMap = template.FuncMap{
|
||||||
|
|
||||||
func LemmyLinkRewrite(input string, host string, lemmy_domain string) (body string) {
|
func LemmyLinkRewrite(input string, host string, lemmy_domain string) (body string) {
|
||||||
body = input
|
body = input
|
||||||
// community bangs
|
|
||||||
body = RegReplace(body, `!([a-zA-Z0-9_]+)@([a-zA-Z0-9\.\-]+)([ \n\r]+|<\/p>)`, `<a href="/c/$1@$2">!$1@$2</a> `)
|
|
||||||
// localize community and user links
|
// localize community and user links
|
||||||
body = RegReplace(body, `href="https:\/\/([a-zA-Z0-9\.\-]+)\/((c|u|comment|post)\/.*?)"`, `href="/$2@$1"`)
|
body = RegReplace(body, `href="https:\/\/([a-zA-Z0-9\.\-]+)\/((c|u|comment|post)\/.*?)"`, `href="/$2@$1"`)
|
||||||
// remove extra instance tag
|
// remove extra instance tag
|
||||||
|
|
Loading…
Reference in a new issue