Skip to content

Commit d0a5d74

Browse files
fix: wiki render absolute links, close #26 (#27)
1 parent 326c2b6 commit d0a5d74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gh/wiki.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ impl GetEdit for WikiArticle {
1313
fn get_edit(&self) -> String {
1414
let title = self.title.to_owned();
1515
let uri = self.uri.to_owned();
16-
format!("[{title}]({uri})")
16+
format!("[{title}](https://github.com{uri})")
1717
}
1818
}
1919

0 commit comments

Comments
 (0)