Fix anchor tag formatting.

This commit is contained in:
ADAMJR 2023-01-03 14:47:24 +00:00
parent 45cc83d048
commit 4633062bf4
2 changed files with 4 additions and 1 deletions

View File

@ -8,6 +8,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Added
### Fixed
- Message formatting does not work.
### Changed
### Removed

View File

@ -31,7 +31,7 @@ export class FormatService {
.replace(this.patterns.codeLine, '<code>$1</code>')
.replace(this.patterns.blockQuoteLine, '<span class="blockquote pl-1">$1</span>')
.replace(this.patterns.blockQuoteMultiline, '<div class="blockquote pl-1">$1</div>')
.replace(defaultPatterns.url, '<a href="$1" target="_blank">$1</div>');
.replace(defaultPatterns.url, '<a href="$1" target="_blank">$1</a>');
}
// FIXME: