🌐 AI搜索 & 代理 主页
Skip to content
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