alpha
Login
or
Join now
vielle.dev
/
site-wip-legacy
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[Archived] Archived WIP of vielle.dev
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
Remove unneeded console.log s
author
afterlifepro
date
1 year ago
(Jul 9, 2025, 11:47 PM +0100)
commit
9e705881
9e705881689d3f5d0f95ae1b81329eb6c94e82d1
parent
c8a646c4
c8a646c4120dd6e9d863f7b8545d602753c23cee
-4
3 changed files
Expand all
Collapse all
Unified
Split
rehype-custom-html.ts
src
components
generic
Nav.astro
pages
blog
[id].astro
-2
rehype-custom-html.ts
View file
Reviewed
···
29
29
)
30
30
child.children.shift();
31
31
32
32
-
console.log(`data-bq-flag--${flag[0]}`, flag[0]);
33
33
-
34
32
node.properties[`data-bq-flag--${flag[0].toLowerCase()}`] = true;
35
33
}
36
34
}
-1
src/components/generic/Nav.astro
View file
Reviewed
···
11
11
const { current } = Astro.props;
12
12
13
13
const data = (await getEntry("nav", "urls")?.then((x) => x.data)) ?? [];
14
14
-
console.log(data);
15
14
---
16
15
17
16
<button
-1
src/pages/blog/[id].astro
View file
Reviewed
···
60
60
if (!(code instanceof HTMLElement)) return;
61
61
62
62
const heading = document.createElement("code-heading");
63
63
-
console.log(code.innerText);
64
63
heading.setAttribute("contents", code.innerText);
65
64
66
65
const lang = code.dataset["language"];