Metadata-Version: 2.1
Name: mdft
Version: 0.1.3
Summary: Package for generating file trees in Markdown
Author-email: Rafael Copstein <rcopstein@gmail.com>
Project-URL: Homepage, https://github.com/rcopstein/mdft
Project-URL: Issues, https://github.com/rcopstein/mdft/issues
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pathspec>=0.12.1

# MDFT - Markdown File Trees

Package for generating file trees in Markdown

## Example

The following file tree is automatically generated based on the contents of the specified path.

<!-- mdft src include_files,link -->
- [mdft/](src/mdft)
	- [converter/](src/mdft/converter)
		- [converter.py](src/mdft/converter/converter.py)
		- [\_\_init\_\_.py](src/mdft/converter/__init__.py)
	- [util/](src/mdft/util)
		- [options.py](src/mdft/util/options.py)
		- [command.py](src/mdft/util/command.py)
		- [blueprint.py](src/mdft/util/blueprint.py)
		- [line.py](src/mdft/util/line.py)
		- [\_\_init\_\_.py](src/mdft/util/__init__.py)
	- [file/](src/mdft/file)
		- [\_\_init\_\_.py](src/mdft/file/__init__.py)
		- [file.py](src/mdft/file/file.py)
	- [\_\_init\_\_.py](src/mdft/__init__.py)
	- [scanner/](src/mdft/scanner)
		- [file\_scanner.py](src/mdft/scanner/file_scanner.py)
		- [\_\_init\_\_.py](src/mdft/scanner/__init__.py)
		- [file\_filter.py](src/mdft/scanner/file_filter.py)
	- [\_\_main\_\_.py](src/mdft/__main__.py)
	- [injector/](src/mdft/injector)
		- [\_\_init\_\_.py](src/mdft/injector/__init__.py)
		- [injector.py](src/mdft/injector/injector.py)
