├── .gitattributes ├── .gitignore ├── Images ├── 1.png ├── 2.png ├── 3.png └── 4.png ├── LICENSE.txt ├── PrintHTML.Core ├── Formatters │ ├── AbstractLineFormatter.cs │ ├── AsciiFormatter.cs │ ├── BoldFormatter.cs │ ├── BoxFormatter.cs │ ├── CenterAlignFormatter.cs │ ├── FormatTag.cs │ ├── FormattedDocument.cs │ ├── GenericFormatter.cs │ ├── HorizontalRuleFormatter.cs │ ├── ILineFormatter.cs │ ├── JustifyAlignFormatter.cs │ ├── LeftAlignFormatter.cs │ ├── MultiLineBoldFormatter.cs │ └── RightAlignFormatter.cs ├── Helpers │ ├── AsyncPrintTask.cs │ ├── PrinterInfo.cs │ └── PrinterTools.cs ├── HtmlConverter │ ├── CssStylesheet.cs │ ├── HtmlCSSParser.cs │ ├── HtmlEncodedTextWriter.cs │ ├── HtmlFromXamlConverter.cs │ ├── HtmlLexicalAnalyzer.cs │ ├── HtmlParser.cs │ ├── HtmlSchema.cs │ ├── HtmlToXamlConverter.cs │ └── HtmlTokenType.cs ├── PrintHTML.Core.csproj └── Services │ └── PrinterService.cs ├── PrintHTML.sln ├── PrintHTML ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── PrintHTML.csproj └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/Images/1.png -------------------------------------------------------------------------------- /Images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/Images/2.png -------------------------------------------------------------------------------- /Images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/Images/3.png -------------------------------------------------------------------------------- /Images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/Images/4.png -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PrintHTML.Core/Formatters/AbstractLineFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML.Core/Formatters/AbstractLineFormatter.cs -------------------------------------------------------------------------------- /PrintHTML.Core/Formatters/AsciiFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML.Core/Formatters/AsciiFormatter.cs -------------------------------------------------------------------------------- /PrintHTML.Core/Formatters/BoldFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML.Core/Formatters/BoldFormatter.cs -------------------------------------------------------------------------------- /PrintHTML.Core/Formatters/BoxFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML.Core/Formatters/BoxFormatter.cs -------------------------------------------------------------------------------- /PrintHTML.Core/Formatters/CenterAlignFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML.Core/Formatters/CenterAlignFormatter.cs -------------------------------------------------------------------------------- /PrintHTML.Core/Formatters/FormatTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML.Core/Formatters/FormatTag.cs -------------------------------------------------------------------------------- /PrintHTML.Core/Formatters/FormattedDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML.Core/Formatters/FormattedDocument.cs -------------------------------------------------------------------------------- /PrintHTML.Core/Formatters/GenericFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML.Core/Formatters/GenericFormatter.cs -------------------------------------------------------------------------------- /PrintHTML.Core/Formatters/HorizontalRuleFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML.Core/Formatters/HorizontalRuleFormatter.cs -------------------------------------------------------------------------------- /PrintHTML.Core/Formatters/ILineFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML.Core/Formatters/ILineFormatter.cs -------------------------------------------------------------------------------- /PrintHTML.Core/Formatters/JustifyAlignFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML.Core/Formatters/JustifyAlignFormatter.cs -------------------------------------------------------------------------------- /PrintHTML.Core/Formatters/LeftAlignFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML.Core/Formatters/LeftAlignFormatter.cs -------------------------------------------------------------------------------- /PrintHTML.Core/Formatters/MultiLineBoldFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML.Core/Formatters/MultiLineBoldFormatter.cs -------------------------------------------------------------------------------- /PrintHTML.Core/Formatters/RightAlignFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML.Core/Formatters/RightAlignFormatter.cs -------------------------------------------------------------------------------- /PrintHTML.Core/Helpers/AsyncPrintTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML.Core/Helpers/AsyncPrintTask.cs -------------------------------------------------------------------------------- /PrintHTML.Core/Helpers/PrinterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML.Core/Helpers/PrinterInfo.cs -------------------------------------------------------------------------------- /PrintHTML.Core/Helpers/PrinterTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML.Core/Helpers/PrinterTools.cs -------------------------------------------------------------------------------- /PrintHTML.Core/HtmlConverter/CssStylesheet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML.Core/HtmlConverter/CssStylesheet.cs -------------------------------------------------------------------------------- /PrintHTML.Core/HtmlConverter/HtmlCSSParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML.Core/HtmlConverter/HtmlCSSParser.cs -------------------------------------------------------------------------------- /PrintHTML.Core/HtmlConverter/HtmlEncodedTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML.Core/HtmlConverter/HtmlEncodedTextWriter.cs -------------------------------------------------------------------------------- /PrintHTML.Core/HtmlConverter/HtmlFromXamlConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML.Core/HtmlConverter/HtmlFromXamlConverter.cs -------------------------------------------------------------------------------- /PrintHTML.Core/HtmlConverter/HtmlLexicalAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML.Core/HtmlConverter/HtmlLexicalAnalyzer.cs -------------------------------------------------------------------------------- /PrintHTML.Core/HtmlConverter/HtmlParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML.Core/HtmlConverter/HtmlParser.cs -------------------------------------------------------------------------------- /PrintHTML.Core/HtmlConverter/HtmlSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML.Core/HtmlConverter/HtmlSchema.cs -------------------------------------------------------------------------------- /PrintHTML.Core/HtmlConverter/HtmlToXamlConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML.Core/HtmlConverter/HtmlToXamlConverter.cs -------------------------------------------------------------------------------- /PrintHTML.Core/HtmlConverter/HtmlTokenType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML.Core/HtmlConverter/HtmlTokenType.cs -------------------------------------------------------------------------------- /PrintHTML.Core/PrintHTML.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML.Core/PrintHTML.Core.csproj -------------------------------------------------------------------------------- /PrintHTML.Core/Services/PrinterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML.Core/Services/PrinterService.cs -------------------------------------------------------------------------------- /PrintHTML.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML.sln -------------------------------------------------------------------------------- /PrintHTML/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML/App.config -------------------------------------------------------------------------------- /PrintHTML/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML/App.xaml -------------------------------------------------------------------------------- /PrintHTML/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML/App.xaml.cs -------------------------------------------------------------------------------- /PrintHTML/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML/MainWindow.xaml -------------------------------------------------------------------------------- /PrintHTML/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML/MainWindow.xaml.cs -------------------------------------------------------------------------------- /PrintHTML/PrintHTML.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML/PrintHTML.csproj -------------------------------------------------------------------------------- /PrintHTML/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PrintHTML/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PrintHTML/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML/Properties/Resources.resx -------------------------------------------------------------------------------- /PrintHTML/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PrintHTML/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/PrintHTML/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BeratARPA/HTML-Thermal-Printer/HEAD/README.md --------------------------------------------------------------------------------