🌐 AI搜索 & 代理 主页
Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
gitbook page link cleanup
  • Loading branch information
montanalow committed Dec 9, 2023
commit c6540792ebd0d9a8da02dd55bd319021dae9e428
16 changes: 16 additions & 0 deletions pgml-dashboard/src/utils/markdown.rs
Original file line number Diff line number Diff line change
Expand Up @@ -917,6 +917,7 @@ pub fn mkdocs<'a>(root: &'a AstNode<'a>, arena: &'a Arena<AstNode<'a>>) -> anyho

iter_nodes(root, &mut |node| {
match &mut node.data.borrow_mut().value {
// Strip .md extensions that gitbook includes in page link urls
&mut NodeValue::Link(ref mut link) => {
let path = Path::new(link.url.as_str());

Expand All @@ -932,6 +933,21 @@ pub fn mkdocs<'a>(root: &'a AstNode<'a>, arena: &'a Arena<AstNode<'a>>) -> anyho
}

&mut NodeValue::Text(ref mut text) => {

// Strip .md extensions that gitbook includes in page link text
if text.ends_with(".md") {
if let Some(parent) = node.parent() {
match parent.data.borrow().value {
NodeValue::Link(ref link) => {
for _ in 0..".md".len() {
text.pop();
}
}
_ => {}
}
}
}

if text.starts_with("=== \"") {
let mut parent = {
match node.parent() {
Expand Down