mirror of
https://gitea.com/gitea/tea.git
synced 2024-11-23 02:51:37 +01:00
d2295828d0
Path-only URLs need an absolute reference to be resolved against for printing in markdown Previously we resolved against the URL to the resource we were operating on (eg comment or issue URL). The markdown renderer in the web UI resolves all such URLs relative to the repo base URL. This PR adopts this behaviour in tea, by trimming the URL to a repo base URL via regex. This makes a custom patch to our markdown renderer `glamour` obsolete, which turned out to be an incorrect patch, meaning we can make use of upstream glamour again. Co-authored-by: Norwin <git@nroo.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/401 Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Reviewed-by: 6543 <6543@obermui.de> Co-authored-by: Norwin <noerw@noreply.gitea.io> Co-committed-by: Norwin <noerw@noreply.gitea.io>
59 lines
1.4 KiB
Go
59 lines
1.4 KiB
Go
package ansi
|
|
|
|
import (
|
|
"bytes"
|
|
"io"
|
|
"strings"
|
|
|
|
"github.com/muesli/reflow/wordwrap"
|
|
)
|
|
|
|
// A ParagraphElement is used to render individual paragraphs.
|
|
type ParagraphElement struct {
|
|
First bool
|
|
}
|
|
|
|
func (e *ParagraphElement) Render(w io.Writer, ctx RenderContext) error {
|
|
bs := ctx.blockStack
|
|
rules := ctx.options.Styles.Paragraph
|
|
|
|
if !e.First {
|
|
_, _ = w.Write([]byte("\n"))
|
|
}
|
|
be := BlockElement{
|
|
Block: &bytes.Buffer{},
|
|
Style: cascadeStyle(bs.Current().Style, rules, false),
|
|
}
|
|
bs.Push(be)
|
|
|
|
renderText(w, ctx.options.ColorProfile, bs.Parent().Style.StylePrimitive, rules.BlockPrefix)
|
|
renderText(bs.Current().Block, ctx.options.ColorProfile, bs.Current().Style.StylePrimitive, rules.Prefix)
|
|
return nil
|
|
}
|
|
|
|
func (e *ParagraphElement) Finish(w io.Writer, ctx RenderContext) error {
|
|
bs := ctx.blockStack
|
|
rules := bs.Current().Style
|
|
|
|
mw := NewMarginWriter(ctx, w, rules)
|
|
if len(strings.TrimSpace(bs.Current().Block.String())) > 0 {
|
|
flow := wordwrap.NewWriter(int(bs.Width(ctx)))
|
|
flow.KeepNewlines = false
|
|
_, _ = flow.Write(bs.Current().Block.Bytes())
|
|
flow.Close()
|
|
|
|
_, err := mw.Write(flow.Bytes())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
_, _ = mw.Write([]byte("\n"))
|
|
}
|
|
|
|
renderText(w, ctx.options.ColorProfile, bs.Current().Style.StylePrimitive, rules.Suffix)
|
|
renderText(w, ctx.options.ColorProfile, bs.Parent().Style.StylePrimitive, rules.BlockSuffix)
|
|
|
|
bs.Current().Block.Reset()
|
|
bs.Pop()
|
|
return nil
|
|
}
|