Skip to content

Commit

Permalink
fix(markdown): updates comment (#2203)
Browse files Browse the repository at this point in the history
  • Loading branch information
JulieMarie authored Jul 24, 2024
1 parent 8fc4e52 commit b7ebd84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/markdown/src/lib/markdown.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function isAbsoluteUrl(currentHref: string): boolean {
}

// TODO: assumes it is a github url
// allow override somehow
// handles absolute and relative URLs
function generateHref(currentHref: string, relativeHref: string): string {
if (currentHref && relativeHref) {
if (isAbsoluteUrl(currentHref)) {
Expand Down

0 comments on commit b7ebd84

Please sign in to comment.