markdown-to-confluence 0.2.1__py3-none-any.whl → 0.2.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {markdown_to_confluence-0.2.1.dist-info → markdown_to_confluence-0.2.2.dist-info}/METADATA +25 -7
- markdown_to_confluence-0.2.2.dist-info/RECORD +19 -0
- md2conf/__init__.py +1 -1
- md2conf/application.py +9 -6
- md2conf/matcher.py +83 -0
- md2conf/mermaid.py +41 -19
- md2conf/processor.py +8 -5
- md2conf/puppeteer-config.json +8 -0
- markdown_to_confluence-0.2.1.dist-info/RECORD +0 -17
- {markdown_to_confluence-0.2.1.dist-info → markdown_to_confluence-0.2.2.dist-info}/LICENSE +0 -0
- {markdown_to_confluence-0.2.1.dist-info → markdown_to_confluence-0.2.2.dist-info}/WHEEL +0 -0
- {markdown_to_confluence-0.2.1.dist-info → markdown_to_confluence-0.2.2.dist-info}/entry_points.txt +0 -0
- {markdown_to_confluence-0.2.1.dist-info → markdown_to_confluence-0.2.2.dist-info}/top_level.txt +0 -0
- {markdown_to_confluence-0.2.1.dist-info → markdown_to_confluence-0.2.2.dist-info}/zip-safe +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: markdown-to-confluence
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: Publish Markdown files to Confluence wiki
|
|
5
5
|
Home-page: https://github.com/hunyadi/md2conf
|
|
6
6
|
Author: Levente Hunyadi
|
|
@@ -144,6 +144,12 @@ Provide generated-by prompt text in the Markdown file with a tag:
|
|
|
144
144
|
|
|
145
145
|
Alternatively, use the `--generated-by GENERATED_BY` option. The tag takes precedence.
|
|
146
146
|
|
|
147
|
+
### Ignoring files
|
|
148
|
+
|
|
149
|
+
Skip files in a directory with rules defined in `.mdignore`. Each rule should occupy a single line. Rules follow the syntax of [fnmatch](https://docs.python.org/3/library/fnmatch.html#fnmatch.fnmatch). Specifically, `?` matches any single character, and `*` matches zero or more characters. For example, use `up-*.md` to exclude Markdown files that start with `up-`. Lines that start with `#` are treated as comments.
|
|
150
|
+
|
|
151
|
+
Files that don't have the extension `*.md` are skipped automatically. Hidden directories (whose name starts with `.`) are not recursed into.
|
|
152
|
+
|
|
147
153
|
### Running the tool
|
|
148
154
|
|
|
149
155
|
You execute the command-line tool `md2conf` to synchronize the Markdown file with Confluence:
|
|
@@ -195,18 +201,30 @@ options:
|
|
|
195
201
|
--webui-links Enable Confluence Web UI links.
|
|
196
202
|
```
|
|
197
203
|
|
|
198
|
-
### Using the
|
|
204
|
+
### Using the Docker container
|
|
205
|
+
|
|
206
|
+
You can run the Docker container via `docker run` or via `Dockerfile`. Either can accept the environment variables or arguments similar to the Python options. The final argument `./` corresponds to `mdpath` in the command-line utility.
|
|
207
|
+
|
|
208
|
+
With `docker run`, you can pass Confluence domain, user, API and space key directly to `docker run`:
|
|
199
209
|
|
|
200
|
-
|
|
210
|
+
```sh
|
|
211
|
+
docker run --rm --name md2conf -v $(pwd):/data leventehunyadi/md2conf -d instructure.atlassian.net -u levente.hunyadi@instructure.com -a 0123456789abcdef -s DAP ./
|
|
212
|
+
```
|
|
213
|
+
|
|
214
|
+
Alternatively, you can use a separate file `.env` to pass these parameters as environment variables:
|
|
201
215
|
|
|
202
216
|
```sh
|
|
203
|
-
docker run --rm --
|
|
217
|
+
docker run --rm --env-file .env --name md2conf -v $(pwd):/data leventehunyadi/md2conf ./
|
|
204
218
|
```
|
|
205
219
|
|
|
206
|
-
|
|
220
|
+
In each case, `-v $(pwd):/data` maps the current directory to Docker container's `WORKDIR` such *md2conf* can scan files and directories in the local file system.
|
|
221
|
+
|
|
222
|
+
Note that the entry point for the Docker container's base image is `ENTRYPOINT ["python3", "-m", "md2conf"]`.
|
|
223
|
+
|
|
224
|
+
With the `Dockerfile` approach, you can extend the base image:
|
|
207
225
|
|
|
208
226
|
```Dockerfile
|
|
209
|
-
FROM
|
|
227
|
+
FROM leventehunyadi/md2conf:latest
|
|
210
228
|
|
|
211
229
|
ENV CONFLUENCE_DOMAIN='instructure.atlassian.net'
|
|
212
230
|
ENV CONFLUENCE_PATH='/wiki/'
|
|
@@ -220,7 +238,7 @@ CMD ["./"]
|
|
|
220
238
|
Alternatively,
|
|
221
239
|
|
|
222
240
|
```Dockerfile
|
|
223
|
-
FROM
|
|
241
|
+
FROM leventehunyadi/md2conf:latest
|
|
224
242
|
|
|
225
243
|
CMD ["-d", "instructure.atlassian.net", "-u", "levente.hunyadi@instructure.com", "-a", "0123456789abcdef", "-s", "DAP", "./"]
|
|
226
244
|
```
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
md2conf/__init__.py,sha256=1DSbQlz0zNxil7Lbsh7VjmGvJdtKhOjtd67r2elUSjE,402
|
|
2
|
+
md2conf/__main__.py,sha256=_qUspNQmQdhpH4Myh9vXDcauPyUx_FyEzNtaW_c8ytY,6601
|
|
3
|
+
md2conf/api.py,sha256=UZ7mkeE1d_f_bACj8LC-t6d4EqXFQCufbeVVdi4FsTs,16947
|
|
4
|
+
md2conf/application.py,sha256=mQusGnzu-ssFn9-aC_rGsqsWpDtw8qFJDnPW7cRkXC0,7762
|
|
5
|
+
md2conf/converter.py,sha256=_zFk-H4NZuY2Y58enVGgFNubOJv9EI2u8tS7RQRiD3A,30391
|
|
6
|
+
md2conf/entities.dtd,sha256=M6NzqL5N7dPs_eUA_6sDsiSLzDaAacrx9LdttiufvYU,30215
|
|
7
|
+
md2conf/matcher.py,sha256=SAmXQzQNan05jVcmZ8PEONynj-SEcVrkCHyXvBxEi2Q,2690
|
|
8
|
+
md2conf/mermaid.py,sha256=a7PVcd7kcFBOMw7Z2mOfvWC1JIVR4Q1EkkanLk1SLx0,1981
|
|
9
|
+
md2conf/processor.py,sha256=V_kxpk4da8vzSLx4Zixhf1sEWdVIxKZeJocJvWhOK6Y,4020
|
|
10
|
+
md2conf/properties.py,sha256=2l1tW8HmnrEsXN4-Dtby2tYJQTG1MirRpM3H6ykjQ4c,1858
|
|
11
|
+
md2conf/puppeteer-config.json,sha256=-dMTAN_7kNTGbDlfXzApl0KJpAWna9YKZdwMKbpOb60,159
|
|
12
|
+
md2conf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
+
markdown_to_confluence-0.2.2.dist-info/LICENSE,sha256=Pv43so2bPfmKhmsrmXFyAvS7M30-1i1tzjz6-dfhyOo,1077
|
|
14
|
+
markdown_to_confluence-0.2.2.dist-info/METADATA,sha256=a_CQkC2-De5lcIAudWShsx0m1DIAtA6utrsJKcAi20I,11571
|
|
15
|
+
markdown_to_confluence-0.2.2.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
16
|
+
markdown_to_confluence-0.2.2.dist-info/entry_points.txt,sha256=F1zxa1wtEObtbHS-qp46330WVFLHdMnV2wQ-ZorRmX0,50
|
|
17
|
+
markdown_to_confluence-0.2.2.dist-info/top_level.txt,sha256=_FJfl_kHrHNidyjUOuS01ngu_jDsfc-ZjSocNRJnTzU,8
|
|
18
|
+
markdown_to_confluence-0.2.2.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
19
|
+
markdown_to_confluence-0.2.2.dist-info/RECORD,,
|
md2conf/__init__.py
CHANGED
|
@@ -5,7 +5,7 @@ Parses Markdown files, converts Markdown content into the Confluence Storage For
|
|
|
5
5
|
Confluence API endpoints to upload images and content.
|
|
6
6
|
"""
|
|
7
7
|
|
|
8
|
-
__version__ = "0.2.
|
|
8
|
+
__version__ = "0.2.2"
|
|
9
9
|
__author__ = "Levente Hunyadi"
|
|
10
10
|
__copyright__ = "Copyright 2022-2024, Levente Hunyadi"
|
|
11
11
|
__license__ = "MIT"
|
md2conf/application.py
CHANGED
|
@@ -13,6 +13,7 @@ from .converter import (
|
|
|
13
13
|
extract_qualified_id,
|
|
14
14
|
read_qualified_id,
|
|
15
15
|
)
|
|
16
|
+
from .matcher import Matcher, MatcherOptions
|
|
16
17
|
|
|
17
18
|
LOGGER = logging.getLogger(__name__)
|
|
18
19
|
|
|
@@ -89,16 +90,18 @@ class Application:
|
|
|
89
90
|
|
|
90
91
|
LOGGER.info(f"Indexing directory: {local_dir}")
|
|
91
92
|
|
|
93
|
+
matcher = Matcher(MatcherOptions(source=".mdignore", extension="md"), local_dir)
|
|
94
|
+
|
|
92
95
|
files: List[Path] = []
|
|
93
96
|
directories: List[Path] = []
|
|
94
97
|
for entry in os.scandir(local_dir):
|
|
98
|
+
if matcher.is_excluded(entry.name):
|
|
99
|
+
continue
|
|
100
|
+
|
|
95
101
|
if entry.is_file():
|
|
96
|
-
|
|
97
|
-
# skip non-markdown files
|
|
98
|
-
files.append((Path(local_dir) / entry.name).absolute())
|
|
102
|
+
files.append((Path(local_dir) / entry.name).absolute())
|
|
99
103
|
elif entry.is_dir():
|
|
100
|
-
|
|
101
|
-
directories.append((Path(local_dir) / entry.name).absolute())
|
|
104
|
+
directories.append((Path(local_dir) / entry.name).absolute())
|
|
102
105
|
|
|
103
106
|
# make page act as parent node in Confluence
|
|
104
107
|
parent_id: Optional[ConfluenceQualifiedID] = None
|
|
@@ -141,7 +144,7 @@ class Application:
|
|
|
141
144
|
else:
|
|
142
145
|
if parent_id is None:
|
|
143
146
|
raise ValueError(
|
|
144
|
-
"expected:
|
|
147
|
+
f"expected: parent page ID for Markdown file with no linked Confluence page: {absolute_path}"
|
|
145
148
|
)
|
|
146
149
|
|
|
147
150
|
confluence_page = self._create_page(
|
md2conf/matcher.py
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import os.path
|
|
2
|
+
from dataclasses import dataclass
|
|
3
|
+
from fnmatch import fnmatch
|
|
4
|
+
from pathlib import Path
|
|
5
|
+
from typing import Iterable, List, Optional
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
@dataclass
|
|
9
|
+
class MatcherOptions:
|
|
10
|
+
"""
|
|
11
|
+
Options for checking against a list of exclude/include patterns.
|
|
12
|
+
|
|
13
|
+
:param source: File name to read exclusion rules from.
|
|
14
|
+
:param extension: Extension to narrow down search to.
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
source: str
|
|
18
|
+
extension: Optional[str] = None
|
|
19
|
+
|
|
20
|
+
def __post_init__(self) -> None:
|
|
21
|
+
if self.extension is not None and not self.extension.startswith("."):
|
|
22
|
+
self.extension = f".{self.extension}"
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class Matcher:
|
|
26
|
+
"Compares file and directory names against a list of exclude/include patterns."
|
|
27
|
+
|
|
28
|
+
options: MatcherOptions
|
|
29
|
+
rules: List[str]
|
|
30
|
+
|
|
31
|
+
def __init__(self, options: MatcherOptions, directory: Path) -> None:
|
|
32
|
+
self.options = options
|
|
33
|
+
if os.path.exists(directory / options.source):
|
|
34
|
+
with open(directory / options.source, "r") as f:
|
|
35
|
+
rules = f.read().splitlines()
|
|
36
|
+
self.rules = [rule for rule in rules if rule and not rule.startswith("#")]
|
|
37
|
+
else:
|
|
38
|
+
self.rules = []
|
|
39
|
+
|
|
40
|
+
def extension_matches(self, name: str) -> bool:
|
|
41
|
+
"True if the file name has the expected extension."
|
|
42
|
+
|
|
43
|
+
return self.options.extension is None or name.endswith(self.options.extension)
|
|
44
|
+
|
|
45
|
+
def is_excluded(self, name: str) -> bool:
|
|
46
|
+
"True if the file or directory name matches any of the exclusion patterns."
|
|
47
|
+
|
|
48
|
+
if name.startswith("."):
|
|
49
|
+
return True
|
|
50
|
+
|
|
51
|
+
if not self.extension_matches(name):
|
|
52
|
+
return True
|
|
53
|
+
|
|
54
|
+
for rule in self.rules:
|
|
55
|
+
if fnmatch(name, rule):
|
|
56
|
+
return True
|
|
57
|
+
else:
|
|
58
|
+
return False
|
|
59
|
+
|
|
60
|
+
def is_included(self, name: str) -> bool:
|
|
61
|
+
"True if the file or directory name matches none of the exclusion patterns."
|
|
62
|
+
|
|
63
|
+
return not self.is_excluded(name)
|
|
64
|
+
|
|
65
|
+
def filter(self, items: Iterable[str]) -> List[str]:
|
|
66
|
+
"""
|
|
67
|
+
Returns only those elements from the input that don't match any of the exclusion rules.
|
|
68
|
+
|
|
69
|
+
:param items: A list of names to filter.
|
|
70
|
+
:returns: A filtered list of names that didn't match any of the exclusion rules.
|
|
71
|
+
"""
|
|
72
|
+
|
|
73
|
+
return [item for item in items if self.is_included(item)]
|
|
74
|
+
|
|
75
|
+
def scandir(self, path: Path) -> List[str]:
|
|
76
|
+
"""
|
|
77
|
+
Returns only those entries in a directory whose name doesn't match any of the exclusion rules.
|
|
78
|
+
|
|
79
|
+
:param path: Directory to scan.
|
|
80
|
+
:returns: A filtered list of entries whose name didn't match any of the exclusion rules.
|
|
81
|
+
"""
|
|
82
|
+
|
|
83
|
+
return self.filter(entry.name for entry in os.scandir(path))
|
md2conf/mermaid.py
CHANGED
|
@@ -1,17 +1,37 @@
|
|
|
1
|
+
import logging
|
|
1
2
|
import os
|
|
2
3
|
import os.path
|
|
3
4
|
import shutil
|
|
4
5
|
import subprocess
|
|
5
6
|
from typing import Literal
|
|
6
7
|
|
|
8
|
+
LOGGER = logging.getLogger(__name__)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
def is_docker() -> bool:
|
|
12
|
+
"True if the application is running in a Docker container."
|
|
13
|
+
|
|
14
|
+
return (
|
|
15
|
+
os.environ.get("CHROME_BIN") == "/usr/bin/chromium-browser"
|
|
16
|
+
and os.environ.get("PUPPETEER_SKIP_DOWNLOAD") == "true"
|
|
17
|
+
)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
def get_mmdc() -> str:
|
|
21
|
+
"Path to the Mermaid diagram converter."
|
|
22
|
+
|
|
23
|
+
if is_docker():
|
|
24
|
+
return "/home/md2conf/node_modules/.bin/mmdc"
|
|
25
|
+
elif os.name == "nt":
|
|
26
|
+
return "mmdc.cmd"
|
|
27
|
+
else:
|
|
28
|
+
return "mmdc"
|
|
29
|
+
|
|
7
30
|
|
|
8
31
|
def has_mmdc() -> bool:
|
|
9
32
|
"True if Mermaid diagram converter is available on the OS."
|
|
10
33
|
|
|
11
|
-
|
|
12
|
-
executable = "mmdc.cmd"
|
|
13
|
-
else:
|
|
14
|
-
executable = "mmdc"
|
|
34
|
+
executable = get_mmdc()
|
|
15
35
|
return shutil.which(executable) is not None
|
|
16
36
|
|
|
17
37
|
|
|
@@ -20,20 +40,21 @@ def render(source: str, output_format: Literal["png", "svg"] = "png") -> bytes:
|
|
|
20
40
|
|
|
21
41
|
filename = f"tmp_mermaid.{output_format}"
|
|
22
42
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
43
|
+
cmd = [
|
|
44
|
+
get_mmdc(),
|
|
45
|
+
"--input",
|
|
46
|
+
"-",
|
|
47
|
+
"--output",
|
|
48
|
+
filename,
|
|
49
|
+
"--outputFormat",
|
|
50
|
+
output_format,
|
|
51
|
+
]
|
|
52
|
+
if is_docker():
|
|
53
|
+
cmd.extend(
|
|
54
|
+
["-p", os.path.join(os.path.dirname(__file__), "puppeteer-config.json")]
|
|
55
|
+
)
|
|
56
|
+
LOGGER.debug(f"Executing: {' '.join(cmd)}")
|
|
27
57
|
try:
|
|
28
|
-
cmd = [
|
|
29
|
-
executable,
|
|
30
|
-
"--input",
|
|
31
|
-
"-",
|
|
32
|
-
"--output",
|
|
33
|
-
filename,
|
|
34
|
-
"--outputFormat",
|
|
35
|
-
output_format,
|
|
36
|
-
]
|
|
37
58
|
proc = subprocess.Popen(
|
|
38
59
|
cmd,
|
|
39
60
|
stdout=subprocess.PIPE,
|
|
@@ -41,10 +62,11 @@ def render(source: str, output_format: Literal["png", "svg"] = "png") -> bytes:
|
|
|
41
62
|
stderr=subprocess.PIPE,
|
|
42
63
|
text=False,
|
|
43
64
|
)
|
|
44
|
-
proc.communicate(input=source.encode("utf-8"))
|
|
65
|
+
stdout, stderr = proc.communicate(input=source.encode("utf-8"))
|
|
45
66
|
if proc.returncode:
|
|
46
67
|
raise RuntimeError(
|
|
47
|
-
f"failed to convert Mermaid diagram; exit code: {proc.returncode}"
|
|
68
|
+
f"failed to convert Mermaid diagram; exit code: {proc.returncode}, "
|
|
69
|
+
f"output:\n{stdout.decode('utf-8')}\n{stderr.decode('utf-8')}"
|
|
48
70
|
)
|
|
49
71
|
with open(filename, "rb") as image:
|
|
50
72
|
return image.read()
|
md2conf/processor.py
CHANGED
|
@@ -11,6 +11,7 @@ from .converter import (
|
|
|
11
11
|
ConfluenceQualifiedID,
|
|
12
12
|
extract_qualified_id,
|
|
13
13
|
)
|
|
14
|
+
from .matcher import Matcher, MatcherOptions
|
|
14
15
|
from .properties import ConfluenceProperties
|
|
15
16
|
|
|
16
17
|
LOGGER = logging.getLogger(__name__)
|
|
@@ -69,16 +70,18 @@ class Processor:
|
|
|
69
70
|
|
|
70
71
|
LOGGER.info(f"Indexing directory: {local_dir}")
|
|
71
72
|
|
|
73
|
+
matcher = Matcher(MatcherOptions(source=".mdignore", extension="md"), local_dir)
|
|
74
|
+
|
|
72
75
|
files: List[Path] = []
|
|
73
76
|
directories: List[Path] = []
|
|
74
77
|
for entry in os.scandir(local_dir):
|
|
78
|
+
if matcher.is_excluded(entry.name):
|
|
79
|
+
continue
|
|
80
|
+
|
|
75
81
|
if entry.is_file():
|
|
76
|
-
|
|
77
|
-
# skip non-markdown files
|
|
78
|
-
files.append((Path(local_dir) / entry.name).absolute())
|
|
82
|
+
files.append((Path(local_dir) / entry.name).absolute())
|
|
79
83
|
elif entry.is_dir():
|
|
80
|
-
|
|
81
|
-
directories.append((Path(local_dir) / entry.name).absolute())
|
|
84
|
+
directories.append((Path(local_dir) / entry.name).absolute())
|
|
82
85
|
|
|
83
86
|
for doc in files:
|
|
84
87
|
metadata = self._get_page(doc)
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
md2conf/__init__.py,sha256=xyEemQnRFIqHO1wvcc3eovTSr1CDUve26Sq0msXUIZw,402
|
|
2
|
-
md2conf/__main__.py,sha256=_qUspNQmQdhpH4Myh9vXDcauPyUx_FyEzNtaW_c8ytY,6601
|
|
3
|
-
md2conf/api.py,sha256=UZ7mkeE1d_f_bACj8LC-t6d4EqXFQCufbeVVdi4FsTs,16947
|
|
4
|
-
md2conf/application.py,sha256=W5OV86XbHWP1qqmJAcRvHPH7NpKQE6yF6nlGpN6RmoU,7709
|
|
5
|
-
md2conf/converter.py,sha256=_zFk-H4NZuY2Y58enVGgFNubOJv9EI2u8tS7RQRiD3A,30391
|
|
6
|
-
md2conf/entities.dtd,sha256=M6NzqL5N7dPs_eUA_6sDsiSLzDaAacrx9LdttiufvYU,30215
|
|
7
|
-
md2conf/mermaid.py,sha256=3zawPXHXkCDhEK-WNtCH-gTqsLBDRzLrmlSo8ZW-Ii8,1371
|
|
8
|
-
md2conf/processor.py,sha256=Tx8t7S8Wl1a4rgMvn2-qw8ob9Q5w2L81a0mfqFYmRJg,3963
|
|
9
|
-
md2conf/properties.py,sha256=2l1tW8HmnrEsXN4-Dtby2tYJQTG1MirRpM3H6ykjQ4c,1858
|
|
10
|
-
md2conf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
markdown_to_confluence-0.2.1.dist-info/LICENSE,sha256=Pv43so2bPfmKhmsrmXFyAvS7M30-1i1tzjz6-dfhyOo,1077
|
|
12
|
-
markdown_to_confluence-0.2.1.dist-info/METADATA,sha256=AiazDLT-VIO7txFz-lJvvCA0ckVfPNjXNXHV6csWOl4,10422
|
|
13
|
-
markdown_to_confluence-0.2.1.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
14
|
-
markdown_to_confluence-0.2.1.dist-info/entry_points.txt,sha256=F1zxa1wtEObtbHS-qp46330WVFLHdMnV2wQ-ZorRmX0,50
|
|
15
|
-
markdown_to_confluence-0.2.1.dist-info/top_level.txt,sha256=_FJfl_kHrHNidyjUOuS01ngu_jDsfc-ZjSocNRJnTzU,8
|
|
16
|
-
markdown_to_confluence-0.2.1.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
17
|
-
markdown_to_confluence-0.2.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{markdown_to_confluence-0.2.1.dist-info → markdown_to_confluence-0.2.2.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{markdown_to_confluence-0.2.1.dist-info → markdown_to_confluence-0.2.2.dist-info}/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|