Skip to content

Commit

Permalink
fix: nếu trong tập tin thiết lập có khai báo url mà không ghi gì cả t…
Browse files Browse the repository at this point in the history
…hì bỏ qua luôn
  • Loading branch information
ooker777 committed Sep 2, 2024
1 parent 68b54fe commit a84f017
Show file tree
Hide file tree
Showing 5 changed files with 10,760 additions and 11,404 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,14 +140,16 @@ const tests: [string, BàiĐăngChưaCóIdVàPhươngThứcTạo | ThôngTinNơi
{},
],
["https://slide.xn--qucu-hr5aza.cc/%C4%90%C3%A1p%20%E1%BB%A9ng%20nhu%20c%E1%BA%A7u%20doanh%20nghi%E1%BB%87p/VNPAY.html", {}],
["https://conversion.sg.larksuite.com/share/base/form/shrlgMhHV7o2tfvi8p3p4cn5llb", {}],
];

for (const test of tests) {
// if (tests.indexOf(test) < 12) continue;
if (tests.indexOf(test) !== tests.length - 1) continue;
const a = await lấyMetaTagVàTạoDocument(test[0]);
// console.log(lấyURLChínhTắc(a));
// console.log(a);
console.log(a);
// Deno.writeTextFileSync("./dfsdf.html", a.html);
// console.log(await tạoBàiĐăngTừURL(test[0]));
console.log(await tạoNơiĐăngTừURL(test[0]));
// assertObjectMatch(await tạoBàiĐăngTừURL(test[0]), test[1]);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import { ĐườngDẫnTuyệtĐối } from "../ĐƯỜNG_DẪN.ts";
export type TênVault = string;
export type MãVault = string;
export interface Vault {
"Tên vault": TênVault;
"Mã vault": MãVault;
URL: UrlChưaChínhTắc;
"Tên vault"?: TênVault;
"Mã vault"?: MãVault;
URL?: UrlChưaChínhTắc;
"Nơi lưu vault": ĐườngDẫnTuyệtĐối;
"Mô tả vault"?: string;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,8 @@ export default async function tạoDanhSáchBàiĐăngTrênVault(): Promise<Bài
const danhSáchBàiĐăng: Omit<BàiĐăng, "id">[] = [];
const danhSáchTấtCảCácVault = await tạoDanhSáchThôngTinTấtCảCácVault();
for (const vault of danhSáchTấtCảCácVault) {
if (!vault.URL) continue;

/** Bài đăng là những ghi chú được chia sẻ (có `share: true` trên frontmatter) */
const danhSáchĐườngDẫnTấtCảCácBàiĐăngTrongVault: ĐườngDẫnTuyệtĐối[] = await tạoDanhSáchĐườngDẫnTấtCảCácBàiĐăngTrongVault(vault["Nơi lưu vault"]);

Expand Down
Loading

0 comments on commit a84f017

Please sign in to comment.