Skip to content

Commit 12865ae

Browse files
yardenshohamsilverwindGiteaBot
authored
Add alert blocks in markdown (#29121)
- Follows #21711 - Closes #28316 Implement GitHub's alert blocks markdown feature Docs: - https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax#alerts - https://github.com/orgs/community/discussions/16925 ### Before ![image](https://github.com/go-gitea/gitea/assets/20454870/14f7b02a-5de5-4fd0-8437-a055dadb31f2) ### After ![image](https://github.com/go-gitea/gitea/assets/20454870/ed06a869-e545-42f1-bf25-4ba20b1be196) ## ⚠️ BREAKING ⚠️ The old syntax no longer works How to migrate: If you used ```md > **Note** My note ``` Switch to ```md > [!NOTE] > My note ``` --------- Signed-off-by: Yarden Shoham <[email protected]> Co-authored-by: silverwind <[email protected]> Co-authored-by: Giteabot <[email protected]>
1 parent 9063fa0 commit 12865ae

File tree

4 files changed

+97
-31
lines changed

4 files changed

+97
-31
lines changed

modules/markup/markdown/ast.go

+1-6
Original file line numberDiff line numberDiff line change
@@ -182,12 +182,7 @@ func IsColorPreview(node ast.Node) bool {
182182
return ok
183183
}
184184

185-
const (
186-
AttentionNote string = "Note"
187-
AttentionWarning string = "Warning"
188-
)
189-
190-
// Attention is an inline for a color preview
185+
// Attention is an inline for an attention
191186
type Attention struct {
192187
ast.BaseInline
193188
AttentionType string

modules/markup/markdown/goldmark.go

+61-16
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ func (g *ASTTransformer) Transform(node *ast.Document, reader text.Reader, pc pa
5353
}
5454
}
5555

56-
attentionMarkedBlockquotes := make(container.Set[*ast.Blockquote])
5756
_ = ast.Walk(node, func(n ast.Node, entering bool) (ast.WalkStatus, error) {
5857
if !entering {
5958
return ast.WalkContinue, nil
@@ -197,18 +196,55 @@ func (g *ASTTransformer) Transform(node *ast.Document, reader text.Reader, pc pa
197196
if css.ColorHandler(strings.ToLower(string(colorContent))) {
198197
v.AppendChild(v, NewColorPreview(colorContent))
199198
}
200-
case *ast.Emphasis:
201-
// check if inside blockquote for attention, expected hierarchy is
202-
// Emphasis < Paragraph < Blockquote
203-
blockquote, isInBlockquote := n.Parent().Parent().(*ast.Blockquote)
204-
if isInBlockquote && !attentionMarkedBlockquotes.Contains(blockquote) {
205-
fullText := string(n.Text(reader.Source()))
206-
if fullText == AttentionNote || fullText == AttentionWarning {
207-
v.SetAttributeString("class", []byte("attention-"+strings.ToLower(fullText)))
208-
v.Parent().InsertBefore(v.Parent(), v, NewAttention(fullText))
209-
attentionMarkedBlockquotes.Add(blockquote)
210-
}
199+
case *ast.Blockquote:
200+
// We only want attention blockquotes when the AST looks like:
201+
// Text: "["
202+
// Text: "!TYPE"
203+
// Text(SoftLineBreak): "]"
204+
205+
// grab these nodes and make sure we adhere to the attention blockquote structure
206+
firstParagraph := v.FirstChild()
207+
if firstParagraph.ChildCount() < 3 {
208+
return ast.WalkContinue, nil
209+
}
210+
firstTextNode, ok := firstParagraph.FirstChild().(*ast.Text)
211+
if !ok || string(firstTextNode.Segment.Value(reader.Source())) != "[" {
212+
return ast.WalkContinue, nil
213+
}
214+
secondTextNode, ok := firstTextNode.NextSibling().(*ast.Text)
215+
if !ok || !attentionTypeRE.MatchString(string(secondTextNode.Segment.Value(reader.Source()))) {
216+
return ast.WalkContinue, nil
211217
}
218+
thirdTextNode, ok := secondTextNode.NextSibling().(*ast.Text)
219+
if !ok || string(thirdTextNode.Segment.Value(reader.Source())) != "]" {
220+
return ast.WalkContinue, nil
221+
}
222+
223+
// grab attention type from markdown source
224+
attentionType := strings.ToLower(strings.TrimPrefix(string(secondTextNode.Segment.Value(reader.Source())), "!"))
225+
226+
// color the blockquote
227+
v.SetAttributeString("class", []byte("gt-py-3 attention attention-"+attentionType))
228+
229+
// create an emphasis to make it bold
230+
emphasis := ast.NewEmphasis(2)
231+
emphasis.SetAttributeString("class", []byte("attention-"+attentionType))
232+
firstParagraph.InsertBefore(firstParagraph, firstTextNode, emphasis)
233+
234+
// capitalize first letter
235+
attentionText := ast.NewString([]byte(strings.ToUpper(string(attentionType[0])) + attentionType[1:]))
236+
237+
// replace the ![TYPE] with icon+Type
238+
emphasis.AppendChild(emphasis, attentionText)
239+
for i := 0; i < 2; i++ {
240+
lineBreak := ast.NewText()
241+
lineBreak.SetSoftLineBreak(true)
242+
firstParagraph.InsertAfter(firstParagraph, emphasis, lineBreak)
243+
}
244+
firstParagraph.InsertBefore(firstParagraph, emphasis, NewAttention(attentionType))
245+
firstParagraph.RemoveChild(firstParagraph, firstTextNode)
246+
firstParagraph.RemoveChild(firstParagraph, secondTextNode)
247+
firstParagraph.RemoveChild(firstParagraph, thirdTextNode)
212248
}
213249
return ast.WalkContinue, nil
214250
})
@@ -339,17 +375,23 @@ func (r *HTMLRenderer) renderCodeSpan(w util.BufWriter, source []byte, n ast.Nod
339375
// renderAttention renders a quote marked with i.e. "> **Note**" or "> **Warning**" with a corresponding svg
340376
func (r *HTMLRenderer) renderAttention(w util.BufWriter, source []byte, node ast.Node, entering bool) (ast.WalkStatus, error) {
341377
if entering {
342-
_, _ = w.WriteString(`<span class="attention-icon attention-`)
378+
_, _ = w.WriteString(`<span class="gt-mr-2 gt-vm attention-`)
343379
n := node.(*Attention)
344380
_, _ = w.WriteString(strings.ToLower(n.AttentionType))
345381
_, _ = w.WriteString(`">`)
346382

347383
var octiconType string
348384
switch n.AttentionType {
349-
case AttentionNote:
385+
case "note":
350386
octiconType = "info"
351-
case AttentionWarning:
387+
case "tip":
388+
octiconType = "light-bulb"
389+
case "important":
390+
octiconType = "report"
391+
case "warning":
352392
octiconType = "alert"
393+
case "caution":
394+
octiconType = "stop"
353395
}
354396
_, _ = w.WriteString(string(svg.RenderHTML("octicon-" + octiconType)))
355397
} else {
@@ -417,7 +459,10 @@ func (r *HTMLRenderer) renderSummary(w util.BufWriter, source []byte, node ast.N
417459
return ast.WalkContinue, nil
418460
}
419461

420-
var validNameRE = regexp.MustCompile("^[a-z ]+$")
462+
var (
463+
validNameRE = regexp.MustCompile("^[a-z ]+$")
464+
attentionTypeRE = regexp.MustCompile("^!(NOTE|TIP|IMPORTANT|WARNING|CAUTION)$")
465+
)
421466

422467
func (r *HTMLRenderer) renderIcon(w util.BufWriter, source []byte, node ast.Node, entering bool) (ast.WalkStatus, error) {
423468
if !entering {

modules/markup/sanitizer.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,10 @@ func createDefaultPolicy() *bluemonday.Policy {
6464
policy.AllowAttrs("class").Matching(regexp.MustCompile(`^color-preview$`)).OnElements("span")
6565

6666
// For attention
67+
policy.AllowAttrs("class").Matching(regexp.MustCompile(`^gt-py-3 attention attention-\w+$`)).OnElements("blockquote")
6768
policy.AllowAttrs("class").Matching(regexp.MustCompile(`^attention-\w+$`)).OnElements("strong")
68-
policy.AllowAttrs("class").Matching(regexp.MustCompile(`^attention-icon attention-\w+$`)).OnElements("span", "strong")
69-
policy.AllowAttrs("class").Matching(regexp.MustCompile(`^svg octicon-\w+$`)).OnElements("svg")
69+
policy.AllowAttrs("class").Matching(regexp.MustCompile(`^gt-mr-2 gt-vm attention-\w+$`)).OnElements("span", "strong")
70+
policy.AllowAttrs("class").Matching(regexp.MustCompile(`^svg octicon-(\w|-)+$`)).OnElements("svg")
7071
policy.AllowAttrs("viewBox", "width", "height", "aria-hidden").OnElements("svg")
7172
policy.AllowAttrs("fill-rule", "d").OnElements("path")
7273

web_src/css/base.css

+32-7
Original file line numberDiff line numberDiff line change
@@ -1268,20 +1268,45 @@ img.ui.avatar,
12681268
border-radius: var(--border-radius);
12691269
}
12701270

1271-
.attention-icon {
1272-
vertical-align: text-top;
1271+
.attention {
1272+
color: var(--color-text) !important;
12731273
}
12741274

1275-
.attention-note {
1276-
font-weight: unset;
1277-
color: var(--color-info-text);
1275+
blockquote.attention-note {
1276+
border-left-color: var(--color-blue-dark-1);
1277+
}
1278+
strong.attention-note, span.attention-note {
1279+
color: var(--color-blue-dark-1);
1280+
}
1281+
1282+
blockquote.attention-tip {
1283+
border-left-color: var(--color-success-text);
1284+
}
1285+
strong.attention-tip, span.attention-tip {
1286+
color: var(--color-success-text);
12781287
}
12791288

1280-
.attention-warning {
1281-
font-weight: unset;
1289+
blockquote.attention-important {
1290+
border-left-color: var(--color-violet-dark-1);
1291+
}
1292+
strong.attention-important, span.attention-important {
1293+
color: var(--color-violet-dark-1);
1294+
}
1295+
1296+
blockquote.attention-warning {
1297+
border-left-color: var(--color-warning-text);
1298+
}
1299+
strong.attention-warning, span.attention-warning {
12821300
color: var(--color-warning-text);
12831301
}
12841302

1303+
blockquote.attention-caution {
1304+
border-left-color: var(--color-red-dark-1);
1305+
}
1306+
strong.attention-caution, span.attention-caution {
1307+
color: var(--color-red-dark-1);
1308+
}
1309+
12851310
.center:not(.popup) {
12861311
text-align: center;
12871312
}

0 commit comments

Comments
 (0)