Metadata-Version: 2.1
Name: docx2latex
Version: 0.0.1
Summary: convert docx file to html code including latex linear equation
Author: shadan
Author-email: shadanparvez64@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt

 
Having function for convert `docx` to `html` and include feature of reading latex linear equations or Math equations 

`Example:`
from docx2latex import Document

docx_file_path = 'myfile.docx'
obj = Document(docx_file_path)
raw_data = get_html_code()
print(raw_data)

'''
use BeautifulSoup for better view
from bs4 import BeautifulSoup
soup = BeautifulSoup(str(raw_data), "html.parser")
print(soup)

'''


