chore: copy updates

This commit is contained in:
jinhojang6 2024-03-01 11:49:29 +09:00
parent 38eed4bea6
commit 3211d940b0
No known key found for this signature in database
GPG Key ID: 1762F21FE8B543F8
1 changed files with 14 additions and 14 deletions

View File

@ -10,7 +10,8 @@ export const commands: Record<
(args: string[]) => Promise<string> | string (args: string[]) => Promise<string> | string
> = { > = {
apply: async () => { apply: async () => {
const htmlString = "<template>Please email us at <a class=\"link\" href=\"mailto:contact@free.technology\">contact@free.technology</a></template>"; const htmlString =
'<template>Please email us at <a class="link" href="mailto:contact@free.technology">contact@free.technology</a></template>';
return htmlString; return htmlString;
}, },
@ -124,7 +125,7 @@ export const commands: Record<
maxDelay = 10 maxDelay = 10
) { ) {
const elements = document.getElementsByClassName(elementClass); const elements = document.getElementsByClassName(elementClass);
const element = elements[elements.length - 1] const element = elements[elements.length - 1];
if (!element) return; if (!element) return;
// Append cursor initially // Append cursor initially
@ -163,7 +164,10 @@ export const commands: Record<
// delete the banner // delete the banner
baner.remove(); baner.remove();
// add the banner to the history // add the banner to the history
history.update((h) => [...h, { command: "banner", outputs: [text] }]); history.update((h) => [
...h,
{ command: "banner", outputs: [text] },
]);
} }
} }
} }
@ -180,20 +184,16 @@ export const commands: Record<
----------------------------------------------------------------------------- -----------------------------------------------------------------------------
The Peripatos is a members-only network of builders, technologists, and The Peripatos is a members-only network of cypherpunks, builders, technologists, and resource allocators harnessing the transformational power of discovering together. We actively work to advance the knowledge and development of cryptography, privacy, competitive governance and digital public goods.
cypherpunks harnessing the transformational power of discovering together.
We actively work to advance the knowledge and development of cryptography, As part of the Institute of Free Technology we support the development, adoption, and accessibility of solutions to digital age problems and are guided by our principles: liberty, censorship resistance, security, privacy, and inclusivity. We seek to connect with and support those innovating to defend our digital rights.
privacy, and network states. We participate in regular roundtable
discussions that focus on curated topics. The objective of these meetings is We participate in regular roundtable discussions and in person events that focus on curated topics. The objective of these meetings is to share insights, generate new ideas, and build the future we want to see.
to share insights, generate new ideas, and network with one another. The
Peripatetic School simply referred to as the Peripatos after the ancient
walkway of the Acropolis was an informal institution of ancient Greece
where members conducted philosophical and scientific inquiries.
Type 'help' to see list of available commands.`; Type 'help' to see list of available commands.`;
displayTextLetterByLetter("banner", text); displayTextLetterByLetter("banner", text);
return ''; return "";
}, },
}; };