example.com -> calckey.org

This commit is contained in:
ThatOneCalculator 2023-05-08 13:39:39 -07:00
parent a7c523ee46
commit a929dc11de
No known key found for this signature in database
GPG key ID: 8703CACD01000000
3 changed files with 15 additions and 15 deletions

View file

@ -55,33 +55,33 @@ describe("fromHtml", () => {
it("link with different text", () => {
assert.deepStrictEqual(
fromHtml('<p>a <a href="https://example.com/b">c</a> d</p>'),
"a [c](https://example.com/b) d",
fromHtml('<p>a <a href="https://calckey.org/b">c</a> d</p>'),
"a [c](https://calckey.org/b) d",
);
});
it("link with different text, but not encoded", () => {
assert.deepStrictEqual(
fromHtml('<p>a <a href="https://example.com/ä">c</a> d</p>'),
"a [c](<https://example.com/ä>) d",
fromHtml('<p>a <a href="https://calckey.org/ä">c</a> d</p>'),
"a [c](<https://calckey.org/ä>) d",
);
});
it("link with same text", () => {
assert.deepStrictEqual(
fromHtml(
'<p>a <a href="https://example.com/b">https://example.com/b</a> d</p>',
'<p>a <a href="https://calckey.org/b">https://calckey.org/b</a> d</p>',
),
"a https://example.com/b d",
"a https://calckey.org/b d",
);
});
it("link with same text, but not encoded", () => {
assert.deepStrictEqual(
fromHtml(
'<p>a <a href="https://example.com/ä">https://example.com/ä</a> d</p>',
'<p>a <a href="https://calckey.org/ä">https://calckey.org/ä</a> d</p>',
),
"a <https://example.com/ä> d",
"a <https://calckey.org/ä> d",
);
});
@ -98,8 +98,8 @@ describe("fromHtml", () => {
it("link without text", () => {
assert.deepStrictEqual(
fromHtml('<p>a <a href="https://example.com/b"></a> d</p>'),
"a https://example.com/b d",
fromHtml('<p>a <a href="https://calckey.org/b"></a> d</p>'),
"a https://calckey.org/b d",
);
});
@ -110,15 +110,15 @@ describe("fromHtml", () => {
it("mention", () => {
assert.deepStrictEqual(
fromHtml(
'<p>a <a href="https://example.com/@user" class="u-url mention">@user</a> d</p>',
'<p>a <a href="https://calckey.org/@user" class="u-url mention">@user</a> d</p>',
),
"a @user@example.com d",
"a @user@calckey.org d",
);
});
it("hashtag", () => {
assert.deepStrictEqual(
fromHtml('<p>a <a href="https://example.com/tags/a">#a</a> d</p>', [
fromHtml('<p>a <a href="https://calckey.org/tags/a">#a</a> d</p>', [
"#a",
]),
"a #a d",

View file

@ -55,7 +55,7 @@ export default defineComponent({
this.$i ? this.$i.username : "guest"
}.\nAlso, here is ${config.url} and [example link](${
config.url
}). for more details, see https://example.com.\nAs you know #misskey is open-source software.`,
}). for more details, see https://calckey.org.\nAs you know #misskey is open-source software.`,
};
},

View file

@ -427,7 +427,7 @@ import { instance } from "@/instance";
let preview_mention = $ref("@example");
let preview_hashtag = $ref("#test");
let preview_link = $ref(`[${i18n.ts._mfm.dummy}](https://example.com)`);
let preview_link = $ref(`[${i18n.ts._mfm.dummy}](https://calckey.org)`);
let preview_emoji = $ref(
instance.emojis.length ? `:${instance.emojis[0].name}:` : ":emojiname:"
);