Skip to content

gitbook page link cleanup #1231

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 9, 2023
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
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