Compare commits
2 Commits
v1.0.0-alp
...
3f9dad8f9a
| Author | SHA1 | Date | |
|---|---|---|---|
|
3f9dad8f9a
|
|||
|
275fb73896
|
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,3 +1,3 @@
|
||||
.env
|
||||
users.yaml
|
||||
substr
|
||||
build/
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"tasks": {
|
||||
"dev": "deno run --allow-all --watch server.ts",
|
||||
"server": "deno run --allow-all server.ts",
|
||||
"compile": "deno compile --allow-all --include ./assets/ --output substr server.ts",
|
||||
"compile": "deno compile --allow-all --include ./assets/ --output ./build/substr_x86_64-unknown-linux-gnu server.ts",
|
||||
"test": "deno test --allow-read --allow-env"
|
||||
},
|
||||
"imports": {
|
||||
|
||||
2
nostr.ts
2
nostr.ts
@@ -110,7 +110,7 @@ export async function nostrUriToUrl(uri: string): Promise<string> {
|
||||
}
|
||||
|
||||
export async function replaceNostrUris(markdown: string): Promise<string> {
|
||||
const nostrUriRegex = /(nostr:|nprofile|naddr|nevent|nrelay|npub)[a-z0-9]+/g;
|
||||
const nostrUriRegex = /(nostr:|nprofile|naddr|nevent|npub)[a-z0-9]+/g;
|
||||
const matches = markdown.match(nostrUriRegex);
|
||||
if (!matches) return markdown;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user