Skip to content

Commit

Permalink
Add project URL to source files
Browse files Browse the repository at this point in the history
  • Loading branch information
hunyadi committed Oct 20, 2024
1 parent 757b6de commit 1a104f7
Show file tree
Hide file tree
Showing 17 changed files with 139 additions and 1 deletion.
8 changes: 8 additions & 0 deletions integration_tests/test_api.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
Publish Markdown files to Confluence wiki.
Copyright 2022-2024, Levente Hunyadi
:see: https://github.com/hunyadi/md2conf
"""

import logging
import os
import os.path
Expand Down
8 changes: 8 additions & 0 deletions integration_tests/test_csf.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
Publish Markdown files to Confluence wiki.
Copyright 2022-2024, Levente Hunyadi
:see: https://github.com/hunyadi/md2conf
"""

import unittest
from pathlib import Path

Expand Down
11 changes: 11 additions & 0 deletions md2conf/__main__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
"""
Publish Markdown files to Confluence wiki.
Parses Markdown files, converts Markdown content into the Confluence Storage Format (XHTML), and invokes
Confluence API endpoints to upload images and content.
Copyright 2022-2024, Levente Hunyadi
:see: https://github.com/hunyadi/md2conf
"""

import argparse
import logging
import os.path
Expand Down
8 changes: 8 additions & 0 deletions md2conf/api.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
Publish Markdown files to Confluence wiki.
Copyright 2022-2024, Levente Hunyadi
:see: https://github.com/hunyadi/md2conf
"""

import io
import json
import logging
Expand Down
8 changes: 8 additions & 0 deletions md2conf/application.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
Publish Markdown files to Confluence wiki.
Copyright 2022-2024, Levente Hunyadi
:see: https://github.com/hunyadi/md2conf
"""

import logging
import os.path
from pathlib import Path
Expand Down
8 changes: 8 additions & 0 deletions md2conf/converter.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
Publish Markdown files to Confluence wiki.
Copyright 2022-2024, Levente Hunyadi
:see: https://github.com/hunyadi/md2conf
"""

# mypy: disable-error-code="dict-item"

import hashlib
Expand Down
8 changes: 8 additions & 0 deletions md2conf/emoji.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
Publish Markdown files to Confluence wiki.
Copyright 2022-2024, Levente Hunyadi
:see: https://github.com/hunyadi/md2conf
"""

import pathlib

import pymdownx.emoji1_db as emoji_db
Expand Down
8 changes: 8 additions & 0 deletions md2conf/matcher.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
Publish Markdown files to Confluence wiki.
Copyright 2022-2024, Levente Hunyadi
:see: https://github.com/hunyadi/md2conf
"""

import os.path
from dataclasses import dataclass
from fnmatch import fnmatch
Expand Down
8 changes: 8 additions & 0 deletions md2conf/mermaid.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
Publish Markdown files to Confluence wiki.
Copyright 2022-2024, Levente Hunyadi
:see: https://github.com/hunyadi/md2conf
"""

import logging
import os
import os.path
Expand Down
8 changes: 8 additions & 0 deletions md2conf/processor.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
Publish Markdown files to Confluence wiki.
Copyright 2022-2024, Levente Hunyadi
:see: https://github.com/hunyadi/md2conf
"""

import hashlib
import logging
import os
Expand Down
8 changes: 8 additions & 0 deletions md2conf/properties.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
Publish Markdown files to Confluence wiki.
Copyright 2022-2024, Levente Hunyadi
:see: https://github.com/hunyadi/md2conf
"""

import os
from typing import Dict, Optional

Expand Down
8 changes: 8 additions & 0 deletions md2conf/util.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
Publish Markdown files to Confluence wiki.
Copyright 2022-2024, Levente Hunyadi
:see: https://github.com/hunyadi/md2conf
"""

import sys

if sys.version_info >= (3, 9):
Expand Down
8 changes: 8 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
Publish Markdown files to Confluence wiki.
Copyright 2022-2024, Levente Hunyadi
:see: https://github.com/hunyadi/md2conf
"""

from setuptools import setup

if __name__ == "__main__":
Expand Down
8 changes: 8 additions & 0 deletions tests/test_conversion.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
Publish Markdown files to Confluence wiki.
Copyright 2022-2024, Levente Hunyadi
:see: https://github.com/hunyadi/md2conf
"""

import logging
import os
import os.path
Expand Down
8 changes: 8 additions & 0 deletions tests/test_matcher.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
Publish Markdown files to Confluence wiki.
Copyright 2022-2024, Levente Hunyadi
:see: https://github.com/hunyadi/md2conf
"""

import logging
import os
import os.path
Expand Down
9 changes: 8 additions & 1 deletion tests/test_mermaid.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
Publish Markdown files to Confluence wiki.
Copyright 2022-2024, Levente Hunyadi
:see: https://github.com/hunyadi/md2conf
"""

import logging
import os
import shutil
Expand All @@ -6,7 +14,6 @@

from md2conf.mermaid import has_mmdc, render


logging.basicConfig(
level=logging.INFO,
format="%(asctime)s - %(levelname)s - %(funcName)s [%(lineno)d] - %(message)s",
Expand Down
8 changes: 8 additions & 0 deletions tests/test_processor.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
"""
Publish Markdown files to Confluence wiki.
Copyright 2022-2024, Levente Hunyadi
:see: https://github.com/hunyadi/md2conf
"""

import logging
import shutil
import unittest
Expand Down

0 comments on commit 1a104f7

Please sign in to comment.