parent
e3b8495431
commit
0ff390ed80
7 changed files with 79 additions and 46 deletions
|
|
@ -8,12 +8,13 @@ export type TextElementUrl = {
|
|||
url: string;
|
||||
};
|
||||
|
||||
export default function(text: string) {
|
||||
export default function(text: string, before: string) {
|
||||
const match = text.match(/^https?:\/\/[\w\/:%#@\$&\?!\(\)\[\]~\.,=\+\-]+/);
|
||||
if (!match) return null;
|
||||
let url = match[0];
|
||||
if (url.endsWith('.')) url = url.substr(0, url.lastIndexOf('.'));
|
||||
if (url.endsWith(',')) url = url.substr(0, url.lastIndexOf(','));
|
||||
if (url.endsWith(')') && before.endsWith('(')) url = url.substr(0, url.lastIndexOf(')'));
|
||||
return {
|
||||
type: 'url',
|
||||
content: url,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue