|
1 |
| -import { last, pluck, identity } from "ramda"; |
2 |
| -import { nip19 } from "nostr-tools"; |
3 | 1 | import { first } from "hurdak/lib/hurdak";
|
| 2 | +import { nip19 } from "nostr-tools"; |
| 3 | +import { last, pluck, identity } from "ramda"; |
4 | 4 |
|
5 | 5 | export const NEWLINE = "newline";
|
6 | 6 | export const TEXT = "text";
|
@@ -71,7 +71,7 @@ export const parseContent = ({ content, tags = [], html = false }) => {
|
71 | 71 |
|
72 | 72 | const parseBech32 = () => {
|
73 | 73 | const bech32 = first(
|
74 |
| - text.match(/^(web\+)?(nostr:)?\/?\/?n(event|ote|profile|pub|addr)1[\d\w]+/i), |
| 74 | + text.match(/^(web\+)?(nostr:)?\/?\/?n(event|ote|profile|pub|addr)1[\d\w]+/i) |
75 | 75 | );
|
76 | 76 |
|
77 | 77 | if (bech32) {
|
@@ -105,7 +105,7 @@ export const parseContent = ({ content, tags = [], html = false }) => {
|
105 | 105 | const parseUrl = () => {
|
106 | 106 | if (html) return;
|
107 | 107 | const raw = first(
|
108 |
| - text.match(/^([a-z\+:]{2,30}:\/\/)?[^\s]+\.[a-z]{2,6}[^\s]*[^\.!?,:\s]/gi), |
| 108 | + text.match(/^([a-z\+:]{2,30}:\/\/)?[^\s]+\.[a-z]{2,6}[^\s]*[^\.!?,:\s]/gi) |
109 | 109 | );
|
110 | 110 |
|
111 | 111 | // Skip url if it's just the end of a filepath
|
@@ -220,5 +220,5 @@ export const truncateContent = (content, { showEntire, maxLength, showMedia = fa
|
220 | 220 | export const getLinks = (parts) =>
|
221 | 221 | pluck(
|
222 | 222 | "value",
|
223 |
| - parts.filter((x) => x.type === LINK && x.isMedia), |
| 223 | + parts.filter((x) => x.type === LINK && x.isMedia) |
224 | 224 | );
|
0 commit comments