Support rel="me" links in markdown
This commit is contained in:
parent
5600def4c8
commit
891bc2ffad
|
@ -1,7 +1,7 @@
|
|||
import { I18n } from '@ngx-translate/i18n-polyfill'
|
||||
import { Validators, ValidatorFn } from '@angular/forms'
|
||||
import { Injectable } from '@angular/core'
|
||||
import { BuildFormValidator, validateHost } from '@app/shared'
|
||||
import { BuildFormValidator, validateHost } from '@app/shared/forms/form-validators'
|
||||
|
||||
@Injectable()
|
||||
export class BatchDomainsValidatorsService {
|
||||
|
|
|
@ -12,7 +12,8 @@ import { ClientHook, ClientHookName, clientHookObject } from '@shared/models/plu
|
|||
import { PluginClientScope } from '@shared/models/plugins/plugin-client-scope.type'
|
||||
import { RegisterClientHookOptions } from '@shared/models/plugins/register-client-hook.model'
|
||||
import { HttpClient } from '@angular/common/http'
|
||||
import { AuthService, Notifier } from '@app/core'
|
||||
import { AuthService } from '@app/core/auth'
|
||||
import { Notifier } from '@app/core/notification'
|
||||
import { RestExtractor } from '@app/shared/rest'
|
||||
import { PluginType } from '@shared/models/plugins/plugin.type'
|
||||
import { PublicServerSetting } from '@shared/models/plugins/public-server.setting'
|
||||
|
|
|
@ -19,15 +19,18 @@ export class HtmlRendererService {
|
|||
allowedTags: [ 'a', 'p', 'span', 'br', 'strong', 'em', 'ul', 'ol', 'li' ],
|
||||
allowedSchemes: [ 'http', 'https' ],
|
||||
allowedAttributes: {
|
||||
'a': [ 'href', 'class', 'target' ]
|
||||
'a': [ 'href', 'class', 'target', 'rel' ]
|
||||
},
|
||||
transformTags: {
|
||||
a: (tagName, attribs) => {
|
||||
let rel = 'noopener noreferrer'
|
||||
if (attribs.rel === 'me') rel += ' me'
|
||||
|
||||
return {
|
||||
tagName,
|
||||
attribs: Object.assign(attribs, {
|
||||
target: '_blank',
|
||||
rel: 'noopener noreferrer'
|
||||
rel
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue