├── .gitignore ├── Authors.md ├── LICENSE ├── Readme.md ├── editor-preview.png ├── editor-source.png ├── manifest.mf ├── nbproject ├── build-impl.xml ├── genfiles.properties ├── platform.properties ├── project.properties └── project.xml ├── release └── modules │ └── ext │ ├── asm-4.1.jar │ ├── asm-analysis-4.1.jar │ ├── asm-tree-4.1.jar │ ├── asm-util-4.1.jar │ ├── parboiled-core-1.1.7.jar │ ├── parboiled-java-1.1.7.jar │ └── pegdown-1.5.0.jar ├── src └── flow │ └── netbeans │ └── markdown │ ├── ExportSerializer.java │ ├── MarkdownCodeTemplateFilter.java │ ├── MarkdownDataObject.java │ ├── MarkdownGenerateHtmlAction.java │ ├── MarkdownOnSaveTask.java │ ├── MarkdownViewHtmlAction.java │ ├── PreviewLinkRenderer.java │ ├── PreviewSerializer.java │ ├── RenderableImpl.java │ ├── api │ ├── RenderOption.java │ └── Renderable.java │ ├── csl │ ├── MarkdownAbbreviationsEntryItem.java │ ├── MarkdownAbbreviationsRootItem.java │ ├── MarkdownInlineVisitor.java │ ├── MarkdownLanguageConfig.java │ ├── MarkdownParser.java │ ├── MarkdownParserResult.java │ ├── MarkdownReferencesEntryItem.java │ ├── MarkdownReferencesRootItem.java │ ├── MarkdownStructureScanner.java │ ├── MarkdownTOCBuilder.java │ ├── MarkdownTOCEntryHandle.java │ ├── MarkdownTOCEntryItem.java │ ├── MarkdownTOCRootItem.java │ └── MarkdownTOCVisitor.java │ ├── highlighter │ ├── MarkdownLexer.java │ ├── MarkdownLexerVisitor.java │ ├── MarkdownToken.java │ ├── MarkdownTokenId.java │ └── MarkdownTokenListBuilder.java │ ├── options │ ├── Bundle.properties │ ├── MarkdownGlobalOptions.java │ ├── MarkdownOptionsPanelController.java │ ├── MarkdownPanel.form │ └── MarkdownPanel.java │ ├── package-info.java │ ├── preview │ ├── AbstractHtmlView.java │ ├── HtmlView.java │ ├── HtmlViewFactory.java │ ├── MarkdownPreviewMVElement.java │ ├── SwingHtmlView.java │ └── ext │ │ └── FXHtmlView.java │ ├── resources │ ├── Bundle.properties │ ├── FontAndColors.xml │ ├── MarkdownExample.md │ ├── MarkdownTemplate.md │ ├── MarkdownTemplateDescription.html │ ├── action-export.png │ ├── action-view.png │ ├── code-templates.xml │ ├── layer.xml │ ├── markdown-mark-16x16.png │ └── text-x-generic.png │ ├── spellchecker │ ├── MarkdownTokenList.java │ └── MarkdownTokenListProvider.java │ ├── typinghooks │ ├── MarkdownDeletedTextInterceptor.java │ ├── MarkdownTypedBreakInterceptor.java │ └── OrderedListReorderer.java │ └── utils │ └── MarkdownDocUtil.java └── test ├── resources ├── PhpMarkdown │ ├── Backslash_escapes.html │ ├── Backslash_escapes.md │ ├── Code_Spans.html │ ├── Code_Spans.md │ ├── Code_block_in_a_list_item.html │ ├── Code_block_in_a_list_item.md │ ├── Email_auto_links.html │ ├── Email_auto_links.md │ ├── Emphasis.html │ ├── Emphasis.md │ ├── Headers.html │ ├── Headers.md │ ├── Horizontal_Rules.html │ ├── Horizontal_Rules.md │ ├── Inline_HTML_(Simple).html │ ├── Inline_HTML_(Simple).md │ ├── Inline_HTML_(Span).html │ ├── Inline_HTML_(Span).md │ ├── Inline_HTML_comments.html │ ├── Inline_HTML_comments.md │ ├── Ins_and_del.html │ ├── Ins_and_del.md │ ├── Links_inline_style.html │ ├── Links_inline_style.md │ ├── MD5_Hashes.html │ ├── MD5_Hashes.md │ ├── Nesting.html │ ├── Nesting.md │ ├── PHP-Specific_Bugs.html │ ├── PHP-Specific_Bugs.md │ ├── Parens_in_URL.html │ ├── Parens_in_URL.md │ ├── Tight_blocks.html │ └── Tight_blocks.md └── PhpMarkdownExtra │ ├── Abbr.html │ ├── Abbr.md │ ├── Definition_Lists.html │ ├── Definition_Lists.md │ ├── Emphasis.html │ ├── Emphasis.md │ ├── Fenced_Code_Blocks.html │ ├── Fenced_Code_Blocks.md │ ├── Footnotes.html │ ├── Footnotes.md │ ├── Inline_HTML_with_Markdown_content.html │ ├── Inline_HTML_with_Markdown_content.md │ ├── Tables.html │ └── Tables.md └── unit ├── data ├── goldenfiles │ ├── headings.pass │ ├── nested.pass │ ├── paragraphs.pass │ └── plain.pass ├── resources │ ├── PhpMarkdown │ │ ├── Backslash_escapes.html │ │ ├── Backslash_escapes.md │ │ ├── Code_Spans.html │ │ ├── Code_Spans.md │ │ ├── Code_block_in_a_list_item.html │ │ ├── Code_block_in_a_list_item.md │ │ ├── Email_auto_links.html │ │ ├── Email_auto_links.md │ │ ├── Emphasis.html │ │ ├── Emphasis.md │ │ ├── Headers.html │ │ ├── Headers.md │ │ ├── Horizontal_Rules.html │ │ ├── Horizontal_Rules.md │ │ ├── Inline_HTML_(Simple).html │ │ ├── Inline_HTML_(Simple).md │ │ ├── Inline_HTML_(Span).html │ │ ├── Inline_HTML_(Span).md │ │ ├── Inline_HTML_comments.html │ │ ├── Inline_HTML_comments.md │ │ ├── Ins_and_del.html │ │ ├── Ins_and_del.md │ │ ├── Links_inline_style.html │ │ ├── Links_inline_style.md │ │ ├── MD5_Hashes.html │ │ ├── MD5_Hashes.md │ │ ├── Nesting.html │ │ ├── Nesting.md │ │ ├── PHP-Specific_Bugs.html │ │ ├── PHP-Specific_Bugs.md │ │ ├── Parens_in_URL.html │ │ ├── Parens_in_URL.md │ │ ├── Tight_blocks.html │ │ └── Tight_blocks.md │ └── PhpMarkdownExtra │ │ ├── Abbr.html │ │ ├── Abbr.md │ │ ├── Definition_Lists.html │ │ ├── Definition_Lists.md │ │ ├── Emphasis.html │ │ ├── Emphasis.md │ │ ├── Fenced_Code_Blocks.html │ │ ├── Fenced_Code_Blocks.md │ │ ├── Footnotes.html │ │ ├── Footnotes.md │ │ ├── Inline_HTML_with_Markdown_content.html │ │ ├── Inline_HTML_with_Markdown_content.md │ │ ├── Tables.html │ │ └── Tables.md └── testfiles │ ├── headings.md │ ├── nested.md │ ├── paragraphs.md │ └── plain.md └── src └── flow └── netbeans └── markdown ├── csl └── MarkdownTOCBuilderTest.java ├── highlighter ├── MarkdownLexerTest.java ├── MarkdownLexerTestBase.java ├── MarkdownLexerVisitorBasicsTest.java ├── MarkdownLexerVisitorExtensionsTest.java ├── MarkdownLexerVisitorTestSupport.java ├── MarkdownTokenIdTest.java └── MarkdownTokenListBuilderTest.java ├── matchers ├── ContainsTokensWithId.java ├── ContainsTokensWithLength.java ├── Empty.java ├── EveryItem.java ├── Matchers.java └── NonZeroLength.java ├── testresources ├── basics │ ├── code_block.md │ ├── code_inline.md │ ├── emphasis.md │ ├── header.md │ ├── horizontal_rule.md │ ├── image_inline.md │ ├── image_reference.md │ ├── link_auto.md │ ├── link_inline.md │ ├── link_reference.md │ ├── list_ordered.md │ ├── list_unordered.md │ └── quote.md └── extensions │ ├── abbreviations.md │ ├── autolinks.md │ ├── definitions.md │ ├── fenced_code_blocks.md │ ├── hardwraps.md │ ├── quotes.md │ ├── smarts.md │ ├── suppress_html_blocks.md │ ├── suppress_inline_html.md │ ├── tables.md │ └── wikilinks.md └── utils └── MarkdownDocUtilTest.java /.gitignore: -------------------------------------------------------------------------------- 1 | /nbproject/private/ 2 | /build/ 3 | -------------------------------------------------------------------------------- /Authors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/Authors.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/Readme.md -------------------------------------------------------------------------------- /editor-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/editor-preview.png -------------------------------------------------------------------------------- /editor-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/editor-source.png -------------------------------------------------------------------------------- /manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/manifest.mf -------------------------------------------------------------------------------- /nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/nbproject/build-impl.xml -------------------------------------------------------------------------------- /nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/nbproject/genfiles.properties -------------------------------------------------------------------------------- /nbproject/platform.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/nbproject/platform.properties -------------------------------------------------------------------------------- /nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/nbproject/project.properties -------------------------------------------------------------------------------- /nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/nbproject/project.xml -------------------------------------------------------------------------------- /release/modules/ext/asm-4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/release/modules/ext/asm-4.1.jar -------------------------------------------------------------------------------- /release/modules/ext/asm-analysis-4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/release/modules/ext/asm-analysis-4.1.jar -------------------------------------------------------------------------------- /release/modules/ext/asm-tree-4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/release/modules/ext/asm-tree-4.1.jar -------------------------------------------------------------------------------- /release/modules/ext/asm-util-4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/release/modules/ext/asm-util-4.1.jar -------------------------------------------------------------------------------- /release/modules/ext/parboiled-core-1.1.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/release/modules/ext/parboiled-core-1.1.7.jar -------------------------------------------------------------------------------- /release/modules/ext/parboiled-java-1.1.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/release/modules/ext/parboiled-java-1.1.7.jar -------------------------------------------------------------------------------- /release/modules/ext/pegdown-1.5.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/release/modules/ext/pegdown-1.5.0.jar -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/ExportSerializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/ExportSerializer.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/MarkdownCodeTemplateFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/MarkdownCodeTemplateFilter.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/MarkdownDataObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/MarkdownDataObject.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/MarkdownGenerateHtmlAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/MarkdownGenerateHtmlAction.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/MarkdownOnSaveTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/MarkdownOnSaveTask.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/MarkdownViewHtmlAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/MarkdownViewHtmlAction.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/PreviewLinkRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/PreviewLinkRenderer.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/PreviewSerializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/PreviewSerializer.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/RenderableImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/RenderableImpl.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/api/RenderOption.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/api/RenderOption.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/api/Renderable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/api/Renderable.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/csl/MarkdownAbbreviationsEntryItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/csl/MarkdownAbbreviationsEntryItem.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/csl/MarkdownAbbreviationsRootItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/csl/MarkdownAbbreviationsRootItem.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/csl/MarkdownInlineVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/csl/MarkdownInlineVisitor.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/csl/MarkdownLanguageConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/csl/MarkdownLanguageConfig.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/csl/MarkdownParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/csl/MarkdownParser.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/csl/MarkdownParserResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/csl/MarkdownParserResult.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/csl/MarkdownReferencesEntryItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/csl/MarkdownReferencesEntryItem.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/csl/MarkdownReferencesRootItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/csl/MarkdownReferencesRootItem.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/csl/MarkdownStructureScanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/csl/MarkdownStructureScanner.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/csl/MarkdownTOCBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/csl/MarkdownTOCBuilder.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/csl/MarkdownTOCEntryHandle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/csl/MarkdownTOCEntryHandle.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/csl/MarkdownTOCEntryItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/csl/MarkdownTOCEntryItem.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/csl/MarkdownTOCRootItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/csl/MarkdownTOCRootItem.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/csl/MarkdownTOCVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/csl/MarkdownTOCVisitor.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/highlighter/MarkdownLexer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/highlighter/MarkdownLexer.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/highlighter/MarkdownLexerVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/highlighter/MarkdownLexerVisitor.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/highlighter/MarkdownToken.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/highlighter/MarkdownToken.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/highlighter/MarkdownTokenId.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/highlighter/MarkdownTokenId.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/highlighter/MarkdownTokenListBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/highlighter/MarkdownTokenListBuilder.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/options/Bundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/options/Bundle.properties -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/options/MarkdownGlobalOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/options/MarkdownGlobalOptions.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/options/MarkdownOptionsPanelController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/options/MarkdownOptionsPanelController.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/options/MarkdownPanel.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/options/MarkdownPanel.form -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/options/MarkdownPanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/options/MarkdownPanel.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/package-info.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/preview/AbstractHtmlView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/preview/AbstractHtmlView.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/preview/HtmlView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/preview/HtmlView.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/preview/HtmlViewFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/preview/HtmlViewFactory.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/preview/MarkdownPreviewMVElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/preview/MarkdownPreviewMVElement.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/preview/SwingHtmlView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/preview/SwingHtmlView.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/preview/ext/FXHtmlView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/preview/ext/FXHtmlView.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/resources/Bundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/resources/Bundle.properties -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/resources/FontAndColors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/resources/FontAndColors.xml -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/resources/MarkdownExample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/resources/MarkdownExample.md -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/resources/MarkdownTemplate.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/resources/MarkdownTemplateDescription.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/resources/MarkdownTemplateDescription.html -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/resources/action-export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/resources/action-export.png -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/resources/action-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/resources/action-view.png -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/resources/code-templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/resources/code-templates.xml -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/resources/layer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/resources/layer.xml -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/resources/markdown-mark-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/resources/markdown-mark-16x16.png -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/resources/text-x-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/resources/text-x-generic.png -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/spellchecker/MarkdownTokenList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/spellchecker/MarkdownTokenList.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/spellchecker/MarkdownTokenListProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/spellchecker/MarkdownTokenListProvider.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/typinghooks/MarkdownDeletedTextInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/typinghooks/MarkdownDeletedTextInterceptor.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/typinghooks/MarkdownTypedBreakInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/typinghooks/MarkdownTypedBreakInterceptor.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/typinghooks/OrderedListReorderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/typinghooks/OrderedListReorderer.java -------------------------------------------------------------------------------- /src/flow/netbeans/markdown/utils/MarkdownDocUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/src/flow/netbeans/markdown/utils/MarkdownDocUtil.java -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Backslash_escapes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/Backslash_escapes.html -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Backslash_escapes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/Backslash_escapes.md -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Code_Spans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/Code_Spans.html -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Code_Spans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/Code_Spans.md -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Code_block_in_a_list_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/Code_block_in_a_list_item.html -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Code_block_in_a_list_item.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/Code_block_in_a_list_item.md -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Email_auto_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/Email_auto_links.html -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Email_auto_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/Email_auto_links.md -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Emphasis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/Emphasis.html -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Emphasis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/Emphasis.md -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Headers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/Headers.html -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Headers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/Headers.md -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Horizontal_Rules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/Horizontal_Rules.html -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Horizontal_Rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/Horizontal_Rules.md -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Inline_HTML_(Simple).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/Inline_HTML_(Simple).html -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Inline_HTML_(Simple).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/Inline_HTML_(Simple).md -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Inline_HTML_(Span).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/Inline_HTML_(Span).html -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Inline_HTML_(Span).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/Inline_HTML_(Span).md -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Inline_HTML_comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/Inline_HTML_comments.html -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Inline_HTML_comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/Inline_HTML_comments.md -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Ins_and_del.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/Ins_and_del.html -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Ins_and_del.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/Ins_and_del.md -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Links_inline_style.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Links_inline_style.md: -------------------------------------------------------------------------------- 1 | [silly URL w/ angle brackets](}]*+|&)>). 2 | -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/MD5_Hashes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/MD5_Hashes.html -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/MD5_Hashes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/MD5_Hashes.md -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Nesting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/Nesting.html -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Nesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/Nesting.md -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/PHP-Specific_Bugs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/PHP-Specific_Bugs.html -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/PHP-Specific_Bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/PHP-Specific_Bugs.md -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Parens_in_URL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/Parens_in_URL.html -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Parens_in_URL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/Parens_in_URL.md -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Tight_blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/Tight_blocks.html -------------------------------------------------------------------------------- /test/resources/PhpMarkdown/Tight_blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdown/Tight_blocks.md -------------------------------------------------------------------------------- /test/resources/PhpMarkdownExtra/Abbr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdownExtra/Abbr.html -------------------------------------------------------------------------------- /test/resources/PhpMarkdownExtra/Abbr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdownExtra/Abbr.md -------------------------------------------------------------------------------- /test/resources/PhpMarkdownExtra/Definition_Lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdownExtra/Definition_Lists.html -------------------------------------------------------------------------------- /test/resources/PhpMarkdownExtra/Definition_Lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdownExtra/Definition_Lists.md -------------------------------------------------------------------------------- /test/resources/PhpMarkdownExtra/Emphasis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdownExtra/Emphasis.html -------------------------------------------------------------------------------- /test/resources/PhpMarkdownExtra/Emphasis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdownExtra/Emphasis.md -------------------------------------------------------------------------------- /test/resources/PhpMarkdownExtra/Fenced_Code_Blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdownExtra/Fenced_Code_Blocks.html -------------------------------------------------------------------------------- /test/resources/PhpMarkdownExtra/Fenced_Code_Blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdownExtra/Fenced_Code_Blocks.md -------------------------------------------------------------------------------- /test/resources/PhpMarkdownExtra/Footnotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdownExtra/Footnotes.html -------------------------------------------------------------------------------- /test/resources/PhpMarkdownExtra/Footnotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdownExtra/Footnotes.md -------------------------------------------------------------------------------- /test/resources/PhpMarkdownExtra/Inline_HTML_with_Markdown_content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdownExtra/Inline_HTML_with_Markdown_content.html -------------------------------------------------------------------------------- /test/resources/PhpMarkdownExtra/Inline_HTML_with_Markdown_content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdownExtra/Inline_HTML_with_Markdown_content.md -------------------------------------------------------------------------------- /test/resources/PhpMarkdownExtra/Tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdownExtra/Tables.html -------------------------------------------------------------------------------- /test/resources/PhpMarkdownExtra/Tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/resources/PhpMarkdownExtra/Tables.md -------------------------------------------------------------------------------- /test/unit/data/goldenfiles/headings.pass: -------------------------------------------------------------------------------- 1 | token #0 HEADER1 [# H1\n] -------------------------------------------------------------------------------- /test/unit/data/goldenfiles/nested.pass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/goldenfiles/nested.pass -------------------------------------------------------------------------------- /test/unit/data/goldenfiles/paragraphs.pass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/goldenfiles/paragraphs.pass -------------------------------------------------------------------------------- /test/unit/data/goldenfiles/plain.pass: -------------------------------------------------------------------------------- 1 | token #0 PLAIN [a*b__c__d*e\n] 2 | -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Backslash_escapes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/Backslash_escapes.html -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Backslash_escapes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/Backslash_escapes.md -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Code_Spans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/Code_Spans.html -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Code_Spans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/Code_Spans.md -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Code_block_in_a_list_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/Code_block_in_a_list_item.html -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Code_block_in_a_list_item.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/Code_block_in_a_list_item.md -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Email_auto_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/Email_auto_links.html -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Email_auto_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/Email_auto_links.md -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Emphasis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/Emphasis.html -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Emphasis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/Emphasis.md -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Headers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/Headers.html -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Headers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/Headers.md -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Horizontal_Rules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/Horizontal_Rules.html -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Horizontal_Rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/Horizontal_Rules.md -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Inline_HTML_(Simple).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/Inline_HTML_(Simple).html -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Inline_HTML_(Simple).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/Inline_HTML_(Simple).md -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Inline_HTML_(Span).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/Inline_HTML_(Span).html -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Inline_HTML_(Span).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/Inline_HTML_(Span).md -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Inline_HTML_comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/Inline_HTML_comments.html -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Inline_HTML_comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/Inline_HTML_comments.md -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Ins_and_del.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/Ins_and_del.html -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Ins_and_del.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/Ins_and_del.md -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Links_inline_style.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Links_inline_style.md: -------------------------------------------------------------------------------- 1 | [silly URL w/ angle brackets](}]*+|&)>). 2 | -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/MD5_Hashes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/MD5_Hashes.html -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/MD5_Hashes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/MD5_Hashes.md -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Nesting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/Nesting.html -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Nesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/Nesting.md -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/PHP-Specific_Bugs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/PHP-Specific_Bugs.html -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/PHP-Specific_Bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/PHP-Specific_Bugs.md -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Parens_in_URL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/Parens_in_URL.html -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Parens_in_URL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/Parens_in_URL.md -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Tight_blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/Tight_blocks.html -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdown/Tight_blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdown/Tight_blocks.md -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdownExtra/Abbr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdownExtra/Abbr.html -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdownExtra/Abbr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdownExtra/Abbr.md -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdownExtra/Definition_Lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdownExtra/Definition_Lists.html -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdownExtra/Definition_Lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdownExtra/Definition_Lists.md -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdownExtra/Emphasis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdownExtra/Emphasis.html -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdownExtra/Emphasis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdownExtra/Emphasis.md -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdownExtra/Fenced_Code_Blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdownExtra/Fenced_Code_Blocks.html -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdownExtra/Fenced_Code_Blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdownExtra/Fenced_Code_Blocks.md -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdownExtra/Footnotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdownExtra/Footnotes.html -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdownExtra/Footnotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdownExtra/Footnotes.md -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdownExtra/Inline_HTML_with_Markdown_content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdownExtra/Inline_HTML_with_Markdown_content.html -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdownExtra/Inline_HTML_with_Markdown_content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdownExtra/Inline_HTML_with_Markdown_content.md -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdownExtra/Tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdownExtra/Tables.html -------------------------------------------------------------------------------- /test/unit/data/resources/PhpMarkdownExtra/Tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/resources/PhpMarkdownExtra/Tables.md -------------------------------------------------------------------------------- /test/unit/data/testfiles/headings.md: -------------------------------------------------------------------------------- 1 | # H1 2 | -------------------------------------------------------------------------------- /test/unit/data/testfiles/nested.md: -------------------------------------------------------------------------------- 1 | a *b __c__ d* e -------------------------------------------------------------------------------- /test/unit/data/testfiles/paragraphs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/data/testfiles/paragraphs.md -------------------------------------------------------------------------------- /test/unit/data/testfiles/plain.md: -------------------------------------------------------------------------------- 1 | a*b__c__d*e -------------------------------------------------------------------------------- /test/unit/src/flow/netbeans/markdown/csl/MarkdownTOCBuilderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/src/flow/netbeans/markdown/csl/MarkdownTOCBuilderTest.java -------------------------------------------------------------------------------- /test/unit/src/flow/netbeans/markdown/highlighter/MarkdownLexerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/src/flow/netbeans/markdown/highlighter/MarkdownLexerTest.java -------------------------------------------------------------------------------- /test/unit/src/flow/netbeans/markdown/highlighter/MarkdownLexerTestBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/src/flow/netbeans/markdown/highlighter/MarkdownLexerTestBase.java -------------------------------------------------------------------------------- /test/unit/src/flow/netbeans/markdown/highlighter/MarkdownLexerVisitorBasicsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/src/flow/netbeans/markdown/highlighter/MarkdownLexerVisitorBasicsTest.java -------------------------------------------------------------------------------- /test/unit/src/flow/netbeans/markdown/highlighter/MarkdownLexerVisitorExtensionsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/src/flow/netbeans/markdown/highlighter/MarkdownLexerVisitorExtensionsTest.java -------------------------------------------------------------------------------- /test/unit/src/flow/netbeans/markdown/highlighter/MarkdownLexerVisitorTestSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/src/flow/netbeans/markdown/highlighter/MarkdownLexerVisitorTestSupport.java -------------------------------------------------------------------------------- /test/unit/src/flow/netbeans/markdown/highlighter/MarkdownTokenIdTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/src/flow/netbeans/markdown/highlighter/MarkdownTokenIdTest.java -------------------------------------------------------------------------------- /test/unit/src/flow/netbeans/markdown/highlighter/MarkdownTokenListBuilderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/src/flow/netbeans/markdown/highlighter/MarkdownTokenListBuilderTest.java -------------------------------------------------------------------------------- /test/unit/src/flow/netbeans/markdown/matchers/ContainsTokensWithId.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/src/flow/netbeans/markdown/matchers/ContainsTokensWithId.java -------------------------------------------------------------------------------- /test/unit/src/flow/netbeans/markdown/matchers/ContainsTokensWithLength.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/src/flow/netbeans/markdown/matchers/ContainsTokensWithLength.java -------------------------------------------------------------------------------- /test/unit/src/flow/netbeans/markdown/matchers/Empty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/src/flow/netbeans/markdown/matchers/Empty.java -------------------------------------------------------------------------------- /test/unit/src/flow/netbeans/markdown/matchers/EveryItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/src/flow/netbeans/markdown/matchers/EveryItem.java -------------------------------------------------------------------------------- /test/unit/src/flow/netbeans/markdown/matchers/Matchers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/src/flow/netbeans/markdown/matchers/Matchers.java -------------------------------------------------------------------------------- /test/unit/src/flow/netbeans/markdown/matchers/NonZeroLength.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/src/flow/netbeans/markdown/matchers/NonZeroLength.java -------------------------------------------------------------------------------- /test/unit/src/flow/netbeans/markdown/testresources/basics/code_block.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madflow/flow-netbeans-markdown/HEAD/test/unit/src/flow/netbeans/markdown/testresources/basics/code_block.md -------------------------------------------------------------------------------- /test/unit/src/flow/netbeans/markdown/testresources/basics/code_inline.md: -------------------------------------------------------------------------------- 1 | `