├── .gitignore ├── LICENSE.md ├── MariGold.OpenXHTML.Tests ├── BasicDocument.cs ├── BasicStyles.cs ├── BlockElements.cs ├── ContainerElements.cs ├── EmbedElements.cs ├── Html │ ├── assets │ │ ├── sample.docx │ │ ├── sample.pptx │ │ └── sample.xlsx │ ├── docxobjecttag.htm │ ├── emptybody.htm │ ├── imageinsideatag.htm │ ├── imagewithspace.htm │ ├── img.png │ ├── objectimage.htm │ ├── objectimageinsidediv.htm │ ├── objectimagemultidiv.htm │ ├── objectparagraphimage.htm │ ├── oneptag.htm │ ├── onesentanceinbody.htm │ ├── ownstyleoverride.htm │ ├── pptxobjecttag.htm │ ├── ptagwithstyle.htm │ ├── relativestylesheet.htm │ ├── sample image.png │ └── xlsxobjecttag.htm ├── HtmlDefaultStyles.cs ├── InheritedStyles.cs ├── InlineElements.cs ├── InvalidElements.cs ├── MariGold.OpenXHTML.Tests.csproj ├── ObjectElements.cs ├── SimpleHtmlFromFile.cs ├── StyleOverrides.cs ├── Table.cs ├── TestDiv.cs ├── TestFonts.cs ├── TestImage.cs ├── TestOL.cs ├── TestP.cs ├── TestUL.cs └── TestUtility.cs ├── MariGold.OpenXHTML.sln ├── MariGold.OpenXHTML ├── DocxCompare.cs ├── DocxElement.cs ├── DocxHtmlNode.cs ├── DocxNode.cs ├── Elements │ ├── DocxA.cs │ ├── DocxAddress.cs │ ├── DocxBody.cs │ ├── DocxBold.cs │ ├── DocxBr.cs │ ├── DocxCenter.cs │ ├── DocxDL.cs │ ├── DocxDiv.cs │ ├── DocxFont.cs │ ├── DocxFooter.cs │ ├── DocxHeader.cs │ ├── DocxHeading.cs │ ├── DocxHr.cs │ ├── DocxImage.cs │ ├── DocxInline.cs │ ├── DocxItalic.cs │ ├── DocxOL.cs │ ├── DocxObject.cs │ ├── DocxQ.cs │ ├── DocxSection.cs │ ├── DocxSpan.cs │ ├── DocxStrike.cs │ ├── DocxSub.cs │ ├── DocxSup.cs │ ├── DocxTable.cs │ ├── DocxTableProperties.cs │ ├── DocxUL.cs │ └── DocxUnderline.cs ├── HtmlParser.cs ├── IOpenXmlContext.cs ├── IParser.cs ├── ITextElement.cs ├── Interchangers │ ├── DocxInterchanger.cs │ └── IDocxInterchanger.cs ├── MariGold.OpenXHTML.csproj ├── MariGold.OpenXHTML.csproj.user ├── OpenXmlContext.cs ├── ParagraphEventArgs.cs ├── Properties │ └── PublishProfiles │ │ ├── FolderProfile.pubxml │ │ ├── FolderProfile.pubxml.user │ │ ├── FolderProfile1.pubxml │ │ └── FolderProfile1.pubxml.user ├── Styles │ ├── DocxAlignment.cs │ ├── DocxBlockStyle.cs │ ├── DocxBorder.cs │ ├── DocxColor.cs │ ├── DocxCombinedStyle.cs │ ├── DocxFontStyle.cs │ ├── DocxImageStyle.cs │ ├── DocxMargin.cs │ ├── DocxParagraphStyle.cs │ ├── DocxRunStyle.cs │ ├── DocxTableCellStyle.cs │ ├── DocxTableRowStyle.cs │ ├── DocxTableStyle.cs │ └── DocxUnits.cs └── WordDocument.cs └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/BasicDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/BasicDocument.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/BasicStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/BasicStyles.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/BlockElements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/BlockElements.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/ContainerElements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/ContainerElements.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/EmbedElements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/EmbedElements.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/Html/assets/sample.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/Html/assets/sample.docx -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/Html/assets/sample.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/Html/assets/sample.pptx -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/Html/assets/sample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/Html/assets/sample.xlsx -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/Html/docxobjecttag.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/Html/docxobjecttag.htm -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/Html/emptybody.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/Html/emptybody.htm -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/Html/imageinsideatag.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/Html/imageinsideatag.htm -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/Html/imagewithspace.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/Html/imagewithspace.htm -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/Html/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/Html/img.png -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/Html/objectimage.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/Html/objectimage.htm -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/Html/objectimageinsidediv.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/Html/objectimageinsidediv.htm -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/Html/objectimagemultidiv.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/Html/objectimagemultidiv.htm -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/Html/objectparagraphimage.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/Html/objectparagraphimage.htm -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/Html/oneptag.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/Html/oneptag.htm -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/Html/onesentanceinbody.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/Html/onesentanceinbody.htm -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/Html/ownstyleoverride.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/Html/ownstyleoverride.htm -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/Html/pptxobjecttag.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/Html/pptxobjecttag.htm -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/Html/ptagwithstyle.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/Html/ptagwithstyle.htm -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/Html/relativestylesheet.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/Html/relativestylesheet.htm -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/Html/sample image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/Html/sample image.png -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/Html/xlsxobjecttag.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/Html/xlsxobjecttag.htm -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/HtmlDefaultStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/HtmlDefaultStyles.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/InheritedStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/InheritedStyles.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/InlineElements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/InlineElements.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/InvalidElements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/InvalidElements.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/MariGold.OpenXHTML.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/MariGold.OpenXHTML.Tests.csproj -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/ObjectElements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/ObjectElements.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/SimpleHtmlFromFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/SimpleHtmlFromFile.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/StyleOverrides.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/StyleOverrides.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/Table.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/TestDiv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/TestDiv.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/TestFonts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/TestFonts.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/TestImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/TestImage.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/TestOL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/TestOL.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/TestP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/TestP.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/TestUL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/TestUL.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML.Tests/TestUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.Tests/TestUtility.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML.sln -------------------------------------------------------------------------------- /MariGold.OpenXHTML/DocxCompare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/DocxCompare.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/DocxElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/DocxElement.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/DocxHtmlNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/DocxHtmlNode.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/DocxNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/DocxNode.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Elements/DocxA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Elements/DocxA.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Elements/DocxAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Elements/DocxAddress.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Elements/DocxBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Elements/DocxBody.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Elements/DocxBold.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Elements/DocxBold.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Elements/DocxBr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Elements/DocxBr.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Elements/DocxCenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Elements/DocxCenter.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Elements/DocxDL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Elements/DocxDL.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Elements/DocxDiv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Elements/DocxDiv.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Elements/DocxFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Elements/DocxFont.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Elements/DocxFooter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Elements/DocxFooter.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Elements/DocxHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Elements/DocxHeader.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Elements/DocxHeading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Elements/DocxHeading.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Elements/DocxHr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Elements/DocxHr.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Elements/DocxImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Elements/DocxImage.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Elements/DocxInline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Elements/DocxInline.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Elements/DocxItalic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Elements/DocxItalic.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Elements/DocxOL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Elements/DocxOL.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Elements/DocxObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Elements/DocxObject.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Elements/DocxQ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Elements/DocxQ.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Elements/DocxSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Elements/DocxSection.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Elements/DocxSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Elements/DocxSpan.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Elements/DocxStrike.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Elements/DocxStrike.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Elements/DocxSub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Elements/DocxSub.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Elements/DocxSup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Elements/DocxSup.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Elements/DocxTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Elements/DocxTable.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Elements/DocxTableProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Elements/DocxTableProperties.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Elements/DocxUL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Elements/DocxUL.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Elements/DocxUnderline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Elements/DocxUnderline.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/HtmlParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/HtmlParser.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/IOpenXmlContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/IOpenXmlContext.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/IParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/IParser.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/ITextElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/ITextElement.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Interchangers/DocxInterchanger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Interchangers/DocxInterchanger.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Interchangers/IDocxInterchanger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Interchangers/IDocxInterchanger.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/MariGold.OpenXHTML.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/MariGold.OpenXHTML.csproj -------------------------------------------------------------------------------- /MariGold.OpenXHTML/MariGold.OpenXHTML.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/MariGold.OpenXHTML.csproj.user -------------------------------------------------------------------------------- /MariGold.OpenXHTML/OpenXmlContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/OpenXmlContext.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/ParagraphEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/ParagraphEventArgs.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Properties/PublishProfiles/FolderProfile.pubxml.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Properties/PublishProfiles/FolderProfile.pubxml.user -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Properties/PublishProfiles/FolderProfile1.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Properties/PublishProfiles/FolderProfile1.pubxml -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Properties/PublishProfiles/FolderProfile1.pubxml.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Properties/PublishProfiles/FolderProfile1.pubxml.user -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Styles/DocxAlignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Styles/DocxAlignment.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Styles/DocxBlockStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Styles/DocxBlockStyle.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Styles/DocxBorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Styles/DocxBorder.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Styles/DocxColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Styles/DocxColor.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Styles/DocxCombinedStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Styles/DocxCombinedStyle.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Styles/DocxFontStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Styles/DocxFontStyle.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Styles/DocxImageStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Styles/DocxImageStyle.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Styles/DocxMargin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Styles/DocxMargin.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Styles/DocxParagraphStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Styles/DocxParagraphStyle.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Styles/DocxRunStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Styles/DocxRunStyle.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Styles/DocxTableCellStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Styles/DocxTableCellStyle.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Styles/DocxTableRowStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Styles/DocxTableRowStyle.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Styles/DocxTableStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Styles/DocxTableStyle.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/Styles/DocxUnits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/Styles/DocxUnits.cs -------------------------------------------------------------------------------- /MariGold.OpenXHTML/WordDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/MariGold.OpenXHTML/WordDocument.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kannan-ar/MariGold.OpenXHTML/HEAD/README.md --------------------------------------------------------------------------------