Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
43 lines
1.0 KiB
Go
43 lines
1.0 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package markdown
|
|
|
|
import (
|
|
"regexp"
|
|
)
|
|
|
|
// Based off the mobile app's emoji parsing from https://github.com/mattermost/commonmark.js
|
|
|
|
var (
|
|
emojiRegex = regexp.MustCompile(`^:([a-z0-9_\-+]+):\B`)
|
|
)
|
|
|
|
// parseEmoji attempts to parse a named emoji (eg. :taco:) starting at the current parser position. If an emoji is
|
|
// found, it adds that to p.inlines and returns true. Otherwise, it returns false.
|
|
func (p *inlineParser) parseEmoji() bool {
|
|
// Only allow emojis after non-word characters
|
|
if p.position > 1 {
|
|
prevChar := p.raw[p.position-1]
|
|
|
|
if isWordByte(prevChar) {
|
|
return false
|
|
}
|
|
}
|
|
|
|
remaining := p.raw[p.position:]
|
|
|
|
loc := emojiRegex.FindStringIndex(remaining)
|
|
if loc == nil {
|
|
return false
|
|
}
|
|
|
|
// Note that there may not be a system or custom emoji that exists with this name
|
|
p.inlines = append(p.inlines, &Emoji{
|
|
Name: remaining[loc[0]+1 : loc[1]-1],
|
|
})
|
|
p.position += loc[1] - loc[0]
|
|
|
|
return true
|
|
}
|