Skip to content

Commit 875a33d

Browse files
committed
fix: broken relative links in combined
chore: remove auto deploy from travis fixes #42
1 parent d2d4035 commit 875a33d

File tree

4 files changed

+11
-14
lines changed

4 files changed

+11
-14
lines changed

.travis.yml

+1-9
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ python:
33
- 3.4
44
- 3.5
55
- 3.6
6+
- 3.7
67

78
script: true
89

@@ -11,15 +12,6 @@ branches:
1112
- master
1213
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/ # version tags
1314

14-
deploy:
15-
provider: pypi
16-
distributions: sdist bdist_wheel
17-
user: $PYPI_USER
18-
password: $PYPI_PASSWORD
19-
on:
20-
tags: true
21-
python: 3.6
22-
2315
notifications:
2416
email:
2517
on_success: never

mkdocs_pdf_export_plugin/plugin.py

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
from mkdocs.plugins import BasePlugin
77
from mkdocs import utils
88

9-
109
class PdfExportPlugin(BasePlugin):
1110

1211
DEFAULT_MEDIA_TYPE = 'print'

mkdocs_pdf_export_plugin/preprocessor/links.py

+9-3
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,18 @@ def transform_href(href: str, rel_url: str):
7878
elif num_hashtags is 1:
7979
section, ext = tuple(os.path.splitext(tail))
8080
id = str.split(ext, '#')[1]
81+
82+
if head == '..':
83+
href = normalize_href(href, rel_url)
84+
return '#{}:{}'.format(href, id)
85+
8186
elif num_hashtags is 0:
8287
if not is_doc(href):
8388
return href
8489

8590
href = normalize_href(href, rel_url)
8691
return '#{}:'.format(href)
8792

88-
elif num_hashtags > 1:
89-
raise RuntimeError('Why are there so many hashtags in {}!?!?'.format(href))
9093

9194

9295
return '#{}/{}:{}'.format(head, section, id)
@@ -96,7 +99,10 @@ def transform_id(id: str, rel_url: str):
9699
head, tail = os.path.split(rel_url)
97100
section, _ = os.path.splitext(tail)
98101

99-
return '{}/{}:{}'.format(head, section, id)
102+
if len(head) > 0:
103+
head += '/'
104+
105+
return '{}{}:{}'.format(head, section, id)
100106

101107
def inject_body_id(url: str):
102108
section, _ = os.path.splitext(url)

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
setup(
55
name='mkdocs-pdf-export-plugin',
6-
version='0.5.2',
6+
version='0.5.3',
77
description='An MkDocs plugin to export content pages as PDF files',
88
long_description='The pdf-export plugin will export all markdown pages in your MkDocs repository as PDF files'
99
'using WeasyPrint. The exported documents support many advanced features missing in most other'

0 commit comments

Comments
 (0)