Skip to content

Commit

Permalink
markdown - wrap media paths in "<>"
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonio López Rivera committed Jun 17, 2022
1 parent a18f946 commit eb2fc69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Conversion/Markup-Packs/Markdown.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Function MarkdownPack1
replacements = @(
@{
searchRegex = [regex]::Escape( $attachmentCfg['object'].preferredName )
replacement = "[$( $attachmentCfg['markdownFileName'] )]($( $pageCfg['mediaPathPandoc'] )/$( $attachmentCfg['markdownFileName'] ))"
replacement = "[$( $attachmentCfg['markdownFileName'] )](<$( $pageCfg['mediaPathPandoc'] )/$( $attachmentCfg['markdownFileName'] )>)"
}
)
}
Expand Down

0 comments on commit eb2fc69

Please sign in to comment.