Skip to content

Fix Gitbook relative links #1196

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
Nov 28, 2023
Merged
Show file tree
Hide file tree
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
2 changes: 0 additions & 2 deletions pgml-cms/careers/full-stack-engineer.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,3 @@ We take care of our team and care about your well being.
### Employment Eligibility

You must be eligible to work in the United States.

\
2 changes: 0 additions & 2 deletions pgml-cms/careers/machine-learning-engineer.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,3 @@ We take care of our team and care about your well being.
### Employment Eligibility

You must be eligible to work in the United States.

\
1 change: 0 additions & 1 deletion pgml-cms/careers/product-manager.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,3 @@ We take care of our team and care about your well being.

You must be eligible to work in the United States.

\
1 change: 0 additions & 1 deletion pgml-dashboard/src/components/navigation/tabs/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@ pub mod tab;
pub use tab::Tab;

// src/components/navigation/tabs/tabs
#[allow(clippy::module_inception)]
pub mod tabs;
pub use tabs::Tabs;
14 changes: 14 additions & 0 deletions pgml-dashboard/src/utils/markdown.rs
Original file line number Diff line number Diff line change
Expand Up @@ -917,6 +917,20 @@ 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 {
&mut NodeValue::Link(ref mut link) => {
let path = Path::new(link.url.as_str());

if path.is_relative() {
if link.url.ends_with(".md") {
for _ in 0..".md".len() {
link.url.pop();
}
}
}

Ok(true)
}

&mut NodeValue::Text(ref mut text) => {
if text.starts_with("=== \"") {
let mut parent = {
Expand Down
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy