better style for blockquote

This commit is contained in:
Ted Unangst 2019-05-14 11:11:11 -04:00
parent ed357653a8
commit 2abe92e4ab
2 changed files with 7 additions and 0 deletions

2
fun.go
View File

@ -151,6 +151,7 @@ var re_bolder = regexp.MustCompile(`(^|\W)\*\*([\w\s,.!?']+)\*\*($|\W)`)
var re_italicer = regexp.MustCompile(`(^|\W)\*([\w\s,.!?']+)\*($|\W)`)
var re_bigcoder = regexp.MustCompile("```\n?((?s:.*?))\n?```")
var re_coder = regexp.MustCompile("`([^`]*)`")
var re_quoter = regexp.MustCompile(`(?m:^> (.*)\n)`)
func markitzero(s string) string {
var bigcodes []string
@ -167,6 +168,7 @@ func markitzero(s string) string {
s = re_coder.ReplaceAllStringFunc(s, lilsaver)
s = re_bolder.ReplaceAllString(s, "$1<b>$2</b>$3")
s = re_italicer.ReplaceAllString(s, "$1<i>$2</i>$3")
s = re_quoter.ReplaceAllString(s, "<blockquote>$1</blockquote>")
lilun := func(s string) string {
code := lilcodes[0]
lilcodes = lilcodes[1:]

View File

@ -7,6 +7,11 @@ body {
pre, code {
white-space: pre-wrap;
}
blockquote {
margin-left: 0em;
padding-left: 0.5em;
border-left: 1px solid #aab;
}
a {
color: #dde;
}