File tree 4 files changed +11
-14
lines changed
4 files changed +11
-14
lines changed Original file line number Diff line number Diff line change 3
3
- 3.4
4
4
- 3.5
5
5
- 3.6
6
+ - 3.7
6
7
7
8
script : true
8
9
@@ -11,15 +12,6 @@ branches:
11
12
- master
12
13
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/ # version tags
13
14
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
-
23
15
notifications :
24
16
email :
25
17
on_success : never
Original file line number Diff line number Diff line change 6
6
from mkdocs .plugins import BasePlugin
7
7
from mkdocs import utils
8
8
9
-
10
9
class PdfExportPlugin (BasePlugin ):
11
10
12
11
DEFAULT_MEDIA_TYPE = 'print'
Original file line number Diff line number Diff line change @@ -78,15 +78,18 @@ def transform_href(href: str, rel_url: str):
78
78
elif num_hashtags is 1 :
79
79
section , ext = tuple (os .path .splitext (tail ))
80
80
id = str .split (ext , '#' )[1 ]
81
+
82
+ if head == '..' :
83
+ href = normalize_href (href , rel_url )
84
+ return '#{}:{}' .format (href , id )
85
+
81
86
elif num_hashtags is 0 :
82
87
if not is_doc (href ):
83
88
return href
84
89
85
90
href = normalize_href (href , rel_url )
86
91
return '#{}:' .format (href )
87
92
88
- elif num_hashtags > 1 :
89
- raise RuntimeError ('Why are there so many hashtags in {}!?!?' .format (href ))
90
93
91
94
92
95
return '#{}/{}:{}' .format (head , section , id )
@@ -96,7 +99,10 @@ def transform_id(id: str, rel_url: str):
96
99
head , tail = os .path .split (rel_url )
97
100
section , _ = os .path .splitext (tail )
98
101
99
- return '{}/{}:{}' .format (head , section , id )
102
+ if len (head ) > 0 :
103
+ head += '/'
104
+
105
+ return '{}{}:{}' .format (head , section , id )
100
106
101
107
def inject_body_id (url : str ):
102
108
section , _ = os .path .splitext (url )
Original file line number Diff line number Diff line change 3
3
4
4
setup (
5
5
name = 'mkdocs-pdf-export-plugin' ,
6
- version = '0.5.2 ' ,
6
+ version = '0.5.3 ' ,
7
7
description = 'An MkDocs plugin to export content pages as PDF files' ,
8
8
long_description = 'The pdf-export plugin will export all markdown pages in your MkDocs repository as PDF files'
9
9
'using WeasyPrint. The exported documents support many advanced features missing in most other'
You can’t perform that action at this time.
0 commit comments