render markdown
All checks were successful
Updates the graph by copying the updated files in the right directory / build-and-deploy (push) Successful in 3s
All checks were successful
Updates the graph by copying the updated files in the right directory / build-and-deploy (push) Successful in 3s
This commit is contained in:
parent
83df55e089
commit
372ce92e2e
3 changed files with 26 additions and 3 deletions
|
|
@ -109,13 +109,21 @@ function update(source) {
|
|||
})
|
||||
.append("a")
|
||||
.attr("target", "_blank")
|
||||
.attr("xlink:href", function (d) {
|
||||
.attr(
|
||||
"xlink:href",
|
||||
(d) =>
|
||||
"viewer.html?file=https://git.hackinpovo.it/HackInPovo/resources/raw/branch/main/notes/" +
|
||||
d.name +
|
||||
".md",
|
||||
)
|
||||
.attr("target", "_blank") // ← open in new tab
|
||||
/* .attr("xlink:href", function (d) {
|
||||
return (
|
||||
"https://git.hackinpovo.it/HackInPovo/resources/raw/branch/main/Notes/" +
|
||||
"https://git.hackinpovo.it/HackInPovo/resources/raw/branch/main/notes/" +
|
||||
d.name +
|
||||
".txt"
|
||||
);
|
||||
})
|
||||
})*/
|
||||
.append("svg:text")
|
||||
.attr("x", function (d) {
|
||||
// Get the sibling text element (the node name) and calculate position
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue