mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Fixed issue with OS-specific paths in tags plugin
This commit is contained in:
parent
753ce19bc6
commit
fd60d5bdae
@ -19,6 +19,7 @@
|
|||||||
# IN THE SOFTWARE.
|
# IN THE SOFTWARE.
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
@ -109,9 +110,12 @@ class TagsPlugin(BasePlugin):
|
|||||||
page.file.src_path,
|
page.file.src_path,
|
||||||
self.tags_file.src_path
|
self.tags_file.src_path
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# Ensure forward slashes, as we have to use the path of the source
|
||||||
|
# file which contains the operating system's path separator.
|
||||||
content.append("- [{}]({})".format(
|
content.append("- [{}]({})".format(
|
||||||
page.meta.get("title", page.title),
|
page.meta.get("title", page.title),
|
||||||
url
|
url.replace(os.path.sep, "/")
|
||||||
))
|
))
|
||||||
|
|
||||||
# Return rendered tag links
|
# Return rendered tag links
|
||||||
|
@ -19,6 +19,7 @@
|
|||||||
# IN THE SOFTWARE.
|
# IN THE SOFTWARE.
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
@ -109,9 +110,12 @@ class TagsPlugin(BasePlugin):
|
|||||||
page.file.src_path,
|
page.file.src_path,
|
||||||
self.tags_file.src_path
|
self.tags_file.src_path
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# Ensure forward slashes, as we have to use the path of the source
|
||||||
|
# file which contains the operating system's path separator.
|
||||||
content.append("- [{}]({})".format(
|
content.append("- [{}]({})".format(
|
||||||
page.meta.get("title", page.title),
|
page.meta.get("title", page.title),
|
||||||
url
|
url.replace(os.path.sep, "/")
|
||||||
))
|
))
|
||||||
|
|
||||||
# Return rendered tag links
|
# Return rendered tag links
|
||||||
|
Loading…
Reference in New Issue
Block a user