├── .config └── dotnet-tools.json ├── .dockerignore ├── .editorconfig ├── .fantomasignore ├── .gitattributes ├── .github ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── pull-requests.yml │ └── push-main.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.Packages.props ├── Directory.Solution.targets ├── FSharp.Formatting.sln ├── LICENSE.md ├── README.md ├── RELEASE_NOTES.md ├── csharp ├── MarkdownSharp.sln ├── MarkdownSharp │ ├── Markdown.cs │ ├── MarkdownOld.cs │ └── MarkdownSharp.csproj └── MarkdownSharpTests │ ├── App.config │ ├── BaseTest.cs │ ├── ConfigTest.cs │ ├── MDTestTests.cs │ ├── MarkdownSharpTests.csproj │ ├── Program.cs │ ├── SimpleTests.cs │ ├── benchmark │ ├── markdown-example-long-1.text │ ├── markdown-example-long-2.text │ ├── markdown-example-medium-1.text │ ├── markdown-example-medium-2.text │ ├── markdown-example-short-1.text │ ├── markdown-example-short-2.text │ ├── markdown-readme.32.text │ ├── markdown-readme.8.text │ └── markdown-readme.text │ ├── helpers │ └── crc16.cs │ ├── lib │ ├── log4net.dll │ └── nunit.framework.dll │ ├── source │ ├── perl │ │ ├── License.text │ │ ├── Markdown Readme.text │ │ ├── Markdown.101.pl │ │ └── Markdown.102b8.pl │ └── php │ │ ├── License.text │ │ ├── PHP Markdown Readme.text │ │ └── markdown.php │ └── testfiles │ ├── mdtest-1.1 │ ├── !readme.txt │ ├── Amps_and_angle_encoding.html │ ├── Amps_and_angle_encoding.text │ ├── Auto_links.html │ ├── Auto_links.text │ ├── Backslash_escapes.ecf6.actual.html │ ├── Backslash_escapes.html │ ├── Backslash_escapes.text │ ├── Blockquotes_with_code_blocks.html │ ├── Blockquotes_with_code_blocks.text │ ├── Code_Blocks.html │ ├── Code_Blocks.text │ ├── Code_Spans.html │ ├── Code_Spans.text │ ├── Hard_wrapped_paragraphs_with_list_like_lines.html │ ├── Hard_wrapped_paragraphs_with_list_like_lines.text │ ├── Horizontal_rules.html │ ├── Horizontal_rules.text │ ├── Images.html │ ├── Images.text │ ├── Inline_HTML_Advanced.html │ ├── Inline_HTML_Advanced.text │ ├── Inline_HTML_Simple.html │ ├── Inline_HTML_Simple.text │ ├── Inline_HTML_comments.html │ ├── Inline_HTML_comments.text │ ├── Links_inline_style.html │ ├── Links_inline_style.text │ ├── Links_reference_style.html │ ├── Links_reference_style.text │ ├── Links_shortcut_references.html │ ├── Links_shortcut_references.text │ ├── Literal_quotes_in_titles.html │ ├── Literal_quotes_in_titles.text │ ├── Markdown_Documentation_Basics.html │ ├── Markdown_Documentation_Basics.text │ ├── Markdown_Documentation_Syntax.html │ ├── Markdown_Documentation_Syntax.text │ ├── Nested_blockquotes.html │ ├── Nested_blockquotes.text │ ├── Ordered_and_unordered_lists.f9a8.actual.html │ ├── Ordered_and_unordered_lists.html │ ├── Ordered_and_unordered_lists.text │ ├── Strong_and_em_together.html │ ├── Strong_and_em_together.text │ ├── Tabs.html │ ├── Tabs.text │ ├── Tidyness.4c19.actual.html │ ├── Tidyness.html │ └── Tidyness.text │ ├── mstest-0.1 │ ├── !readme.txt │ ├── code-inside-list.79b5.actual.html │ ├── code-inside-list.html │ ├── code-inside-list.text │ ├── line-endings-cr.html │ ├── line-endings-cr.text │ ├── line-endings-crlf.html │ ├── line-endings-crlf.text │ ├── line-endings-lf.html │ ├── line-endings-lf.text │ ├── markdown-readme.f179.actual.html │ ├── markdown-readme.html │ └── markdown-readme.text │ ├── pandoc │ ├── !readme.txt │ ├── failure-to-escape-less-than.html │ ├── failure-to-escape-less-than.text │ ├── indented-code-in-list-item.text │ ├── nested-divs.html │ ├── nested-divs.text │ ├── nested-emphasis.html │ ├── nested-emphasis.text │ ├── unordered-list-and-horizontal-rules.text │ ├── unordered-list-followed-by-ordered-list.text │ └── unpredictable-sublists.text │ └── php-markdown │ ├── !readme.txt │ ├── Backslash escapes.html │ ├── Backslash escapes.text │ ├── Code Spans.html │ ├── Code Spans.text │ ├── Code block in a list item.html │ ├── Code block in a list item.text │ ├── Email auto links.html │ ├── Email auto links.text │ ├── Emphasis.html │ ├── Emphasis.text │ ├── Headers.html │ ├── Headers.text │ ├── Horizontal Rules.html │ ├── Horizontal Rules.text │ ├── Inline HTML (Simple).html │ ├── Inline HTML (Simple).text │ ├── Inline HTML (Span).html │ ├── Inline HTML (Span).text │ ├── Inline HTML comments.html │ ├── Inline HTML comments.text │ ├── Ins & del.html │ ├── Ins & del.text │ ├── Links, inline style.html │ ├── Links, inline style.text │ ├── MD5 Hashes.html │ ├── MD5 Hashes.text │ ├── Nesting.html │ ├── Nesting.text │ ├── PHP-Specific Bugs.html │ ├── PHP-Specific Bugs.text │ ├── Parens in URL.html │ ├── Parens in URL.text │ ├── Tight blocks.html │ └── Tight blocks.text ├── docs ├── Dockerfile ├── NuGet.config ├── README.txt ├── _template.fsx ├── _template.html ├── _template.ipynb ├── _template.md ├── _template.tex ├── apidocs.fsx ├── codeformat.fsx ├── commandline.md ├── content.fsx ├── content │ ├── fsdocs-default.css │ ├── fsdocs-details-set-expanded.js │ ├── fsdocs-details-toggle.js │ ├── fsdocs-search.js │ ├── fsdocs-theme-set-dark.js │ ├── fsdocs-theme-toggle.js │ ├── fsdocs-theme.css │ ├── fsdocs-theme.js │ ├── fsdocs-tips.js │ └── img │ │ └── github-pages-settings.png ├── evaluation.fsx ├── img │ ├── badge-binder.svg │ ├── badge-notebook.svg │ ├── badge-script.svg │ ├── favicon.ico │ ├── logo.pdn │ └── logo.png ├── index.md ├── literate-notebook.ipynb ├── literate.fsx ├── markdown.fsx ├── sidebyside │ ├── sideextensions.md │ ├── sidemarkdown.md │ └── sidescript.fsx ├── styling.md ├── templates │ └── leftside │ │ └── styling.md ├── upgrade.md ├── users.md └── zero-to-hero.md ├── global.json ├── lib ├── FSharp.Core.dll ├── FSharp.Core.optdata └── FSharp.Core.sigdata ├── paket-files └── matthid │ └── Yaaf.FSharp.Scripting │ └── src │ └── source │ └── Yaaf.FSharp.Scripting │ └── YaafFSharpScripting.fs ├── src ├── Common │ ├── Collections.fs │ └── StringParsing.fs ├── Directory.Build.props ├── FSharp.Formatting.ApiDocs │ ├── ApiDocs.fs │ ├── Categorise.fs │ ├── FSharp.Formatting.ApiDocs.fsproj │ ├── GenerateHtml.fs │ ├── GenerateMarkdown.fs │ ├── GenerateModel.fs │ └── GenerateSearchIndex.fs ├── FSharp.Formatting.CSharpFormat │ ├── CLikeFormat.cs │ ├── CPlusPlusFormat.cs │ ├── CSharpFormat.cs │ ├── CodeFormat.cs │ ├── FSharp.Formatting.CSharpFormat.csproj │ ├── FSharpFormat.cs │ ├── HaskellFormat.cs │ ├── HtmlFormat.cs │ ├── JavaScriptFormat.cs │ ├── MshFormat.cs │ ├── PaketFormat.cs │ ├── PhpFormat.cs │ ├── SourceFormat.cs │ ├── SyntaxHighlighter.cs │ ├── TsqlFormat.cs │ ├── TypeScriptFormat.cs │ └── VisualBasicFormat.cs ├── FSharp.Formatting.CodeFormat │ ├── CodeFormat.fs │ ├── CodeFormatAgent.fs │ ├── CommentFilter.fs │ ├── Constants.fs │ ├── FSharp.Formatting.CodeFormat.fsproj │ ├── HtmlFormatting.fs │ ├── LatexFormatting.fs │ ├── Pervasive.fs │ ├── PynbFormatting.fs │ ├── SourceCode.fs │ ├── SourceParser.fs │ ├── ToolTipReader.fs │ └── files │ │ ├── style.css │ │ ├── tilde.png │ │ └── tips.js ├── FSharp.Formatting.Common │ ├── FSharp.Formatting.Common.fsproj │ ├── HtmlModel.fs │ ├── Log.fs │ ├── Menu.fs │ ├── PageContentList.fs │ ├── PynbModel.fs │ ├── Range.fs │ ├── Templating.fs │ └── YaafFSharpScripting.fs ├── FSharp.Formatting.Literate │ ├── Contexts.fs │ ├── Document.fs │ ├── Evaluator.fs │ ├── FSharp.Formatting.Literate.fsproj │ ├── Formatting.fs │ ├── Literate.fs │ ├── ParseMarkdown.fs │ ├── ParsePynb.fs │ ├── ParseScript.fs │ ├── Properties │ │ └── launchSettings.json │ └── Transformations.fs ├── FSharp.Formatting.Markdown │ ├── FSharp.Formatting.Markdown.fsproj │ ├── FsxFormatting.fs │ ├── HtmlFormatting.fs │ ├── LatexFormatting.fs │ ├── Markdown.fs │ ├── MarkdownFormatting.fs │ ├── MarkdownModel.fs │ ├── MarkdownParser.fs │ ├── MarkdownUtils.fs │ ├── PynbFormatting.fs │ └── paket.references ├── FSharp.Formatting │ ├── FSharp.Formatting.fsproj │ └── FSharp.Formatting.fsx └── fsdocs-tool │ ├── BuildCommand.fs │ ├── Options.fs │ ├── Program.fs │ ├── ProjectCracker.fs │ └── fsdocs-tool.fsproj └── tests ├── Benchmarks ├── benchmark │ ├── markdown-example-long-1.text │ ├── markdown-example-long-2.text │ ├── markdown-example-medium-1.text │ ├── markdown-example-medium-2.text │ ├── markdown-example-short-1.text │ ├── markdown-example-short-2.text │ ├── markdown-readme.32.text │ ├── markdown-readme.8.text │ └── markdown-readme.text ├── entry.tex └── testfiles │ ├── mdtest-1.1 │ ├── !readme.txt │ ├── Amps_and_angle_encoding.html │ ├── Amps_and_angle_encoding.text │ ├── Auto_links.html │ ├── Auto_links.text │ ├── Backslash_escapes.html │ ├── Backslash_escapes.text │ ├── Blockquotes_with_code_blocks.html │ ├── Blockquotes_with_code_blocks.text │ ├── Code_Blocks.html │ ├── Code_Blocks.text │ ├── Code_Spans.html │ ├── Code_Spans.text │ ├── Hard_wrapped_paragraphs_with_list_like_lines.html │ ├── Hard_wrapped_paragraphs_with_list_like_lines.text │ ├── Horizontal_rules.html │ ├── Horizontal_rules.text │ ├── Images.html │ ├── Images.text │ ├── Inline_HTML_Advanced.html │ ├── Inline_HTML_Advanced.text │ ├── Inline_HTML_Simple.html │ ├── Inline_HTML_Simple.text │ ├── Inline_HTML_comments.html │ ├── Inline_HTML_comments.text │ ├── Links_inline_style.html │ ├── Links_inline_style.text │ ├── Links_reference_style.html │ ├── Links_reference_style.text │ ├── Links_shortcut_references.html │ ├── Links_shortcut_references.text │ ├── Literal_quotes_in_titles.html │ ├── Literal_quotes_in_titles.text │ ├── Markdown_Documentation_Basics.html │ ├── Markdown_Documentation_Basics.tex │ ├── Markdown_Documentation_Basics.text │ ├── Markdown_Documentation_Syntax.html │ ├── Markdown_Documentation_Syntax.tex │ ├── Markdown_Documentation_Syntax.text │ ├── Nested_blockquotes.html │ ├── Nested_blockquotes.text │ ├── Ordered_and_unordered_lists.html │ ├── Ordered_and_unordered_lists.text │ ├── Strong_and_em_together.html │ ├── Strong_and_em_together.text │ ├── Tabs.html │ ├── Tabs.text │ ├── Tidyness.html │ └── Tidyness.text │ ├── mstest-0.1 │ ├── !readme.txt │ ├── code-inside-list.html │ ├── code-inside-list.text │ ├── line-endings-cr.html │ ├── line-endings-cr.text │ ├── line-endings-crlf.html │ ├── line-endings-crlf.text │ ├── line-endings-lf.html │ ├── line-endings-lf.text │ ├── markdown-readme.html │ ├── markdown-readme.tex │ └── markdown-readme.text │ ├── pandoc │ ├── !readme.txt │ ├── failure-to-escape-less-than.html │ ├── failure-to-escape-less-than.text │ ├── indented-code-in-list-item.text │ ├── nested-divs.html │ ├── nested-divs.text │ ├── nested-emphasis.html │ ├── nested-emphasis.text │ ├── unordered-list-and-horizontal-rules.text │ ├── unordered-list-followed-by-ordered-list.text │ └── unpredictable-sublists.text │ └── php-markdown │ ├── !readme.txt │ ├── Backslash escapes.html │ ├── Backslash escapes.text │ ├── Code Spans.html │ ├── Code Spans.text │ ├── Code block in a list item.html │ ├── Code block in a list item.text │ ├── Email auto links.html │ ├── Email auto links.text │ ├── Emphasis.html │ ├── Emphasis.text │ ├── Headers.html │ ├── Headers.text │ ├── Horizontal Rules.html │ ├── Horizontal Rules.text │ ├── Inline HTML (Simple).html │ ├── Inline HTML (Simple).text │ ├── Inline HTML (Span).html │ ├── Inline HTML (Span).text │ ├── Inline HTML comments.html │ ├── Inline HTML comments.text │ ├── Ins & del.html │ ├── Ins & del.text │ ├── Links, inline style.html │ ├── Links, inline style.text │ ├── MD5 Hashes.html │ ├── MD5 Hashes.text │ ├── Nesting.html │ ├── Nesting.text │ ├── PHP-Specific Bugs.html │ ├── PHP-Specific Bugs.text │ ├── Parens in URL.html │ ├── Parens in URL.text │ ├── Tight blocks.html │ └── Tight blocks.text ├── Common └── MarkdownUnit.fs ├── FSharp.ApiDocs.Tests ├── ApiDocsTests.fs ├── AttributeTests.fs ├── FSharp.ApiDocs.Tests.fsproj ├── files │ ├── AttributesTestLib │ │ ├── Attributes.fs │ │ └── AttributesTestLib.fsproj │ ├── CSharpFormat.XML │ ├── CSharpFormat.dll │ ├── Deedle.dll │ ├── Deedle.xml │ ├── FAKE │ │ ├── FakeLib.XML │ │ ├── FakeLib.dll │ │ ├── FakeLib.pdb │ │ ├── ICSharpCode.SharpZipLib.dll │ │ └── Newtonsoft.Json.dll │ ├── FsLib1 │ │ ├── FsLib1.fsproj │ │ ├── Library1.fs │ │ ├── OperatorsWithFsi.fs │ │ └── OperatorsWithFsi.fsi │ ├── FsLib2 │ │ ├── FsLib2.fsproj │ │ └── Library2.fs │ ├── TestLib1 │ │ ├── Library1.fs │ │ └── TestLib1.fsproj │ ├── TestLib2 │ │ ├── Library2.fs │ │ └── TestLib2.fsproj │ ├── TestLib3 │ │ ├── DOM.fs │ │ ├── Library3.fs │ │ ├── SeeAlso.fs │ │ ├── TestLib3.fsproj │ │ └── UndocumentedModule.fs │ ├── crefLib1 │ │ ├── Library1.fs │ │ └── crefLib1.fsproj │ ├── crefLib2 │ │ ├── Library2.fs │ │ └── crefLib2.fsproj │ ├── crefLib3 │ │ ├── Class3.cs │ │ ├── Properties │ │ │ └── AssemblyInfo3.cs │ │ └── crefLib3.csproj │ ├── crefLib4 │ │ ├── Class4.cs │ │ ├── Properties │ │ │ └── AssemblyInfo4.cs │ │ └── crefLib4.csproj │ └── csharpSupport │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── SampleClass.cs │ │ └── csharpSupport.csproj └── paket.references ├── FSharp.CodeFormat.Tests ├── CodeFormatTests.fs └── FSharp.CodeFormat.Tests.fsproj ├── FSharp.Formatting.TestHelpers ├── AssemblyInfo.fs ├── FSharp.Formatting.TestHelpers.fsproj ├── Script.fsx └── TestHelpers.fs ├── FSharp.Literate.Tests ├── DocContentTests.fs ├── EvalTests.fs ├── FSharp.Literate.Tests.fsproj ├── LiterateTests.fs ├── Setup.fs ├── files │ ├── _template.fsx │ ├── _template.ipynb │ ├── _template.md │ ├── _template.tex │ ├── folder1 │ │ └── in-folder1.fsx │ ├── folder2 │ │ └── in-folder2.md │ ├── seo-page.md │ ├── simple1.fsx │ ├── simple2.md │ ├── simple3.ipynb │ └── template.html ├── ipynb-eval │ ├── eval.ipynb │ └── script.fsx └── previous-next │ ├── fellowship.md │ ├── return.md │ └── two-tower.fsx ├── FSharp.Markdown.Tests ├── CommonMarkSpecTest.fs ├── Externals.fs ├── FSharp.Markdown.Tests.fsproj ├── Markdown.fs └── TestFiles.fs └── commonmark_spec.json /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/.editorconfig -------------------------------------------------------------------------------- /.fantomasignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/.fantomasignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/pull-requests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/.github/workflows/pull-requests.yml -------------------------------------------------------------------------------- /.github/workflows/push-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/.github/workflows/push-main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /Directory.Solution.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/Directory.Solution.targets -------------------------------------------------------------------------------- /FSharp.Formatting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/FSharp.Formatting.sln -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /csharp/MarkdownSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharp.sln -------------------------------------------------------------------------------- /csharp/MarkdownSharp/Markdown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharp/Markdown.cs -------------------------------------------------------------------------------- /csharp/MarkdownSharp/MarkdownOld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharp/MarkdownOld.cs -------------------------------------------------------------------------------- /csharp/MarkdownSharp/MarkdownSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharp/MarkdownSharp.csproj -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/App.config -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/BaseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/BaseTest.cs -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/ConfigTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/ConfigTest.cs -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/MDTestTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/MDTestTests.cs -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/MarkdownSharpTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/MarkdownSharpTests.csproj -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/Program.cs -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/SimpleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/SimpleTests.cs -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/benchmark/markdown-example-long-1.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/benchmark/markdown-example-long-1.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/benchmark/markdown-example-long-2.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/benchmark/markdown-example-long-2.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/benchmark/markdown-example-medium-1.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/benchmark/markdown-example-medium-1.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/benchmark/markdown-example-medium-2.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/benchmark/markdown-example-medium-2.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/benchmark/markdown-example-short-1.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/benchmark/markdown-example-short-1.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/benchmark/markdown-example-short-2.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/benchmark/markdown-example-short-2.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/benchmark/markdown-readme.32.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/benchmark/markdown-readme.32.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/benchmark/markdown-readme.8.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/benchmark/markdown-readme.8.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/benchmark/markdown-readme.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/benchmark/markdown-readme.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/helpers/crc16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/helpers/crc16.cs -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/lib/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/lib/log4net.dll -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/lib/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/lib/nunit.framework.dll -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/source/perl/License.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/source/perl/License.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/source/perl/Markdown Readme.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/source/perl/Markdown Readme.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/source/perl/Markdown.101.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/source/perl/Markdown.101.pl -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/source/perl/Markdown.102b8.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/source/perl/Markdown.102b8.pl -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/source/php/License.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/source/php/License.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/source/php/PHP Markdown Readme.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/source/php/PHP Markdown Readme.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/source/php/markdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/source/php/markdown.php -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/!readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/!readme.txt -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Amps_and_angle_encoding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Amps_and_angle_encoding.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Amps_and_angle_encoding.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Amps_and_angle_encoding.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Auto_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Auto_links.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Auto_links.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Auto_links.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Backslash_escapes.ecf6.actual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Backslash_escapes.ecf6.actual.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Backslash_escapes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Backslash_escapes.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Backslash_escapes.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Backslash_escapes.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Blockquotes_with_code_blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Blockquotes_with_code_blocks.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Blockquotes_with_code_blocks.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Blockquotes_with_code_blocks.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Code_Blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Code_Blocks.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Code_Blocks.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Code_Blocks.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Code_Spans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Code_Spans.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Code_Spans.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Code_Spans.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Hard_wrapped_paragraphs_with_list_like_lines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Hard_wrapped_paragraphs_with_list_like_lines.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Hard_wrapped_paragraphs_with_list_like_lines.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Hard_wrapped_paragraphs_with_list_like_lines.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Horizontal_rules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Horizontal_rules.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Horizontal_rules.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Horizontal_rules.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Images.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Images.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Images.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Inline_HTML_Advanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Inline_HTML_Advanced.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Inline_HTML_Advanced.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Inline_HTML_Advanced.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Inline_HTML_Simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Inline_HTML_Simple.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Inline_HTML_Simple.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Inline_HTML_Simple.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Inline_HTML_comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Inline_HTML_comments.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Inline_HTML_comments.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Inline_HTML_comments.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Links_inline_style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Links_inline_style.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Links_inline_style.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Links_inline_style.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Links_reference_style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Links_reference_style.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Links_reference_style.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Links_reference_style.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Links_shortcut_references.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Links_shortcut_references.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Links_shortcut_references.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Links_shortcut_references.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Literal_quotes_in_titles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Literal_quotes_in_titles.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Literal_quotes_in_titles.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Literal_quotes_in_titles.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Markdown_Documentation_Basics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Markdown_Documentation_Basics.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Markdown_Documentation_Basics.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Markdown_Documentation_Basics.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Markdown_Documentation_Syntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Markdown_Documentation_Syntax.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Markdown_Documentation_Syntax.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Markdown_Documentation_Syntax.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Nested_blockquotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Nested_blockquotes.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Nested_blockquotes.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Nested_blockquotes.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Ordered_and_unordered_lists.f9a8.actual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Ordered_and_unordered_lists.f9a8.actual.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Ordered_and_unordered_lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Ordered_and_unordered_lists.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Ordered_and_unordered_lists.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Ordered_and_unordered_lists.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Strong_and_em_together.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Strong_and_em_together.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Strong_and_em_together.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Strong_and_em_together.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Tabs.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Tabs.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Tabs.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Tidyness.4c19.actual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Tidyness.4c19.actual.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Tidyness.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Tidyness.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Tidyness.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mdtest-1.1/Tidyness.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mstest-0.1/!readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mstest-0.1/!readme.txt -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mstest-0.1/code-inside-list.79b5.actual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mstest-0.1/code-inside-list.79b5.actual.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mstest-0.1/code-inside-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mstest-0.1/code-inside-list.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mstest-0.1/code-inside-list.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mstest-0.1/code-inside-list.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mstest-0.1/line-endings-cr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mstest-0.1/line-endings-cr.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mstest-0.1/line-endings-cr.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mstest-0.1/line-endings-cr.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mstest-0.1/line-endings-crlf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mstest-0.1/line-endings-crlf.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mstest-0.1/line-endings-crlf.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mstest-0.1/line-endings-crlf.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mstest-0.1/line-endings-lf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mstest-0.1/line-endings-lf.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mstest-0.1/line-endings-lf.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mstest-0.1/line-endings-lf.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mstest-0.1/markdown-readme.f179.actual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mstest-0.1/markdown-readme.f179.actual.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mstest-0.1/markdown-readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mstest-0.1/markdown-readme.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/mstest-0.1/markdown-readme.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/mstest-0.1/markdown-readme.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/pandoc/!readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/pandoc/!readme.txt -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/pandoc/failure-to-escape-less-than.html: -------------------------------------------------------------------------------- 1 |

x<max(a,b)

2 | -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/pandoc/failure-to-escape-less-than.text: -------------------------------------------------------------------------------- 1 | xsilly URL w/ angle brackets.

2 | -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/php-markdown/Links, inline style.text: -------------------------------------------------------------------------------- 1 | [silly URL w/ angle brackets](). 2 | -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/php-markdown/MD5 Hashes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/php-markdown/MD5 Hashes.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/php-markdown/MD5 Hashes.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/php-markdown/MD5 Hashes.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/php-markdown/Nesting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/php-markdown/Nesting.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/php-markdown/Nesting.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/php-markdown/Nesting.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/php-markdown/PHP-Specific Bugs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/php-markdown/PHP-Specific Bugs.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/php-markdown/PHP-Specific Bugs.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/php-markdown/PHP-Specific Bugs.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/php-markdown/Parens in URL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/php-markdown/Parens in URL.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/php-markdown/Parens in URL.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/php-markdown/Parens in URL.text -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/php-markdown/Tight blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/php-markdown/Tight blocks.html -------------------------------------------------------------------------------- /csharp/MarkdownSharpTests/testfiles/php-markdown/Tight blocks.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/csharp/MarkdownSharpTests/testfiles/php-markdown/Tight blocks.text -------------------------------------------------------------------------------- /docs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/Dockerfile -------------------------------------------------------------------------------- /docs/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/NuGet.config -------------------------------------------------------------------------------- /docs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/README.txt -------------------------------------------------------------------------------- /docs/_template.fsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/_template.html -------------------------------------------------------------------------------- /docs/_template.ipynb: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/_template.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/_template.tex -------------------------------------------------------------------------------- /docs/apidocs.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/apidocs.fsx -------------------------------------------------------------------------------- /docs/codeformat.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/codeformat.fsx -------------------------------------------------------------------------------- /docs/commandline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/commandline.md -------------------------------------------------------------------------------- /docs/content.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/content.fsx -------------------------------------------------------------------------------- /docs/content/fsdocs-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/content/fsdocs-default.css -------------------------------------------------------------------------------- /docs/content/fsdocs-details-set-expanded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/content/fsdocs-details-set-expanded.js -------------------------------------------------------------------------------- /docs/content/fsdocs-details-toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/content/fsdocs-details-toggle.js -------------------------------------------------------------------------------- /docs/content/fsdocs-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/content/fsdocs-search.js -------------------------------------------------------------------------------- /docs/content/fsdocs-theme-set-dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/content/fsdocs-theme-set-dark.js -------------------------------------------------------------------------------- /docs/content/fsdocs-theme-toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/content/fsdocs-theme-toggle.js -------------------------------------------------------------------------------- /docs/content/fsdocs-theme.css: -------------------------------------------------------------------------------- 1 | /* Override any variables here */ -------------------------------------------------------------------------------- /docs/content/fsdocs-theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/content/fsdocs-theme.js -------------------------------------------------------------------------------- /docs/content/fsdocs-tips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/content/fsdocs-tips.js -------------------------------------------------------------------------------- /docs/content/img/github-pages-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/content/img/github-pages-settings.png -------------------------------------------------------------------------------- /docs/evaluation.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/evaluation.fsx -------------------------------------------------------------------------------- /docs/img/badge-binder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/img/badge-binder.svg -------------------------------------------------------------------------------- /docs/img/badge-notebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/img/badge-notebook.svg -------------------------------------------------------------------------------- /docs/img/badge-script.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/img/badge-script.svg -------------------------------------------------------------------------------- /docs/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/img/favicon.ico -------------------------------------------------------------------------------- /docs/img/logo.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/img/logo.pdn -------------------------------------------------------------------------------- /docs/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/img/logo.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/literate-notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/literate-notebook.ipynb -------------------------------------------------------------------------------- /docs/literate.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/literate.fsx -------------------------------------------------------------------------------- /docs/markdown.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/markdown.fsx -------------------------------------------------------------------------------- /docs/sidebyside/sideextensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/sidebyside/sideextensions.md -------------------------------------------------------------------------------- /docs/sidebyside/sidemarkdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/sidebyside/sidemarkdown.md -------------------------------------------------------------------------------- /docs/sidebyside/sidescript.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/sidebyside/sidescript.fsx -------------------------------------------------------------------------------- /docs/styling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/styling.md -------------------------------------------------------------------------------- /docs/templates/leftside/styling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/templates/leftside/styling.md -------------------------------------------------------------------------------- /docs/upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/upgrade.md -------------------------------------------------------------------------------- /docs/users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/users.md -------------------------------------------------------------------------------- /docs/zero-to-hero.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/docs/zero-to-hero.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/global.json -------------------------------------------------------------------------------- /lib/FSharp.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/lib/FSharp.Core.dll -------------------------------------------------------------------------------- /lib/FSharp.Core.optdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/lib/FSharp.Core.optdata -------------------------------------------------------------------------------- /lib/FSharp.Core.sigdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/lib/FSharp.Core.sigdata -------------------------------------------------------------------------------- /paket-files/matthid/Yaaf.FSharp.Scripting/src/source/Yaaf.FSharp.Scripting/YaafFSharpScripting.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/paket-files/matthid/Yaaf.FSharp.Scripting/src/source/Yaaf.FSharp.Scripting/YaafFSharpScripting.fs -------------------------------------------------------------------------------- /src/Common/Collections.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/Common/Collections.fs -------------------------------------------------------------------------------- /src/Common/StringParsing.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/Common/StringParsing.fs -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/FSharp.Formatting.ApiDocs/ApiDocs.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.ApiDocs/ApiDocs.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.ApiDocs/Categorise.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.ApiDocs/Categorise.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.ApiDocs/FSharp.Formatting.ApiDocs.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.ApiDocs/FSharp.Formatting.ApiDocs.fsproj -------------------------------------------------------------------------------- /src/FSharp.Formatting.ApiDocs/GenerateHtml.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.ApiDocs/GenerateHtml.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.ApiDocs/GenerateMarkdown.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.ApiDocs/GenerateMarkdown.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.ApiDocs/GenerateModel.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.ApiDocs/GenerateModel.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.ApiDocs/GenerateSearchIndex.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.ApiDocs/GenerateSearchIndex.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.CSharpFormat/CLikeFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CSharpFormat/CLikeFormat.cs -------------------------------------------------------------------------------- /src/FSharp.Formatting.CSharpFormat/CPlusPlusFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CSharpFormat/CPlusPlusFormat.cs -------------------------------------------------------------------------------- /src/FSharp.Formatting.CSharpFormat/CSharpFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CSharpFormat/CSharpFormat.cs -------------------------------------------------------------------------------- /src/FSharp.Formatting.CSharpFormat/CodeFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CSharpFormat/CodeFormat.cs -------------------------------------------------------------------------------- /src/FSharp.Formatting.CSharpFormat/FSharp.Formatting.CSharpFormat.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CSharpFormat/FSharp.Formatting.CSharpFormat.csproj -------------------------------------------------------------------------------- /src/FSharp.Formatting.CSharpFormat/FSharpFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CSharpFormat/FSharpFormat.cs -------------------------------------------------------------------------------- /src/FSharp.Formatting.CSharpFormat/HaskellFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CSharpFormat/HaskellFormat.cs -------------------------------------------------------------------------------- /src/FSharp.Formatting.CSharpFormat/HtmlFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CSharpFormat/HtmlFormat.cs -------------------------------------------------------------------------------- /src/FSharp.Formatting.CSharpFormat/JavaScriptFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CSharpFormat/JavaScriptFormat.cs -------------------------------------------------------------------------------- /src/FSharp.Formatting.CSharpFormat/MshFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CSharpFormat/MshFormat.cs -------------------------------------------------------------------------------- /src/FSharp.Formatting.CSharpFormat/PaketFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CSharpFormat/PaketFormat.cs -------------------------------------------------------------------------------- /src/FSharp.Formatting.CSharpFormat/PhpFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CSharpFormat/PhpFormat.cs -------------------------------------------------------------------------------- /src/FSharp.Formatting.CSharpFormat/SourceFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CSharpFormat/SourceFormat.cs -------------------------------------------------------------------------------- /src/FSharp.Formatting.CSharpFormat/SyntaxHighlighter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CSharpFormat/SyntaxHighlighter.cs -------------------------------------------------------------------------------- /src/FSharp.Formatting.CSharpFormat/TsqlFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CSharpFormat/TsqlFormat.cs -------------------------------------------------------------------------------- /src/FSharp.Formatting.CSharpFormat/TypeScriptFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CSharpFormat/TypeScriptFormat.cs -------------------------------------------------------------------------------- /src/FSharp.Formatting.CSharpFormat/VisualBasicFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CSharpFormat/VisualBasicFormat.cs -------------------------------------------------------------------------------- /src/FSharp.Formatting.CodeFormat/CodeFormat.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CodeFormat/CodeFormat.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.CodeFormat/CodeFormatAgent.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CodeFormat/CodeFormatAgent.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.CodeFormat/CommentFilter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CodeFormat/CommentFilter.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.CodeFormat/Constants.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CodeFormat/Constants.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.CodeFormat/FSharp.Formatting.CodeFormat.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CodeFormat/FSharp.Formatting.CodeFormat.fsproj -------------------------------------------------------------------------------- /src/FSharp.Formatting.CodeFormat/HtmlFormatting.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CodeFormat/HtmlFormatting.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.CodeFormat/LatexFormatting.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CodeFormat/LatexFormatting.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.CodeFormat/Pervasive.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CodeFormat/Pervasive.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.CodeFormat/PynbFormatting.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CodeFormat/PynbFormatting.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.CodeFormat/SourceCode.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CodeFormat/SourceCode.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.CodeFormat/SourceParser.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CodeFormat/SourceParser.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.CodeFormat/ToolTipReader.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CodeFormat/ToolTipReader.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.CodeFormat/files/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CodeFormat/files/style.css -------------------------------------------------------------------------------- /src/FSharp.Formatting.CodeFormat/files/tilde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CodeFormat/files/tilde.png -------------------------------------------------------------------------------- /src/FSharp.Formatting.CodeFormat/files/tips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.CodeFormat/files/tips.js -------------------------------------------------------------------------------- /src/FSharp.Formatting.Common/FSharp.Formatting.Common.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Common/FSharp.Formatting.Common.fsproj -------------------------------------------------------------------------------- /src/FSharp.Formatting.Common/HtmlModel.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Common/HtmlModel.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.Common/Log.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Common/Log.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.Common/Menu.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Common/Menu.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.Common/PageContentList.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Common/PageContentList.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.Common/PynbModel.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Common/PynbModel.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.Common/Range.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Common/Range.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.Common/Templating.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Common/Templating.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.Common/YaafFSharpScripting.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Common/YaafFSharpScripting.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.Literate/Contexts.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Literate/Contexts.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.Literate/Document.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Literate/Document.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.Literate/Evaluator.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Literate/Evaluator.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.Literate/FSharp.Formatting.Literate.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Literate/FSharp.Formatting.Literate.fsproj -------------------------------------------------------------------------------- /src/FSharp.Formatting.Literate/Formatting.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Literate/Formatting.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.Literate/Literate.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Literate/Literate.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.Literate/ParseMarkdown.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Literate/ParseMarkdown.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.Literate/ParsePynb.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Literate/ParsePynb.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.Literate/ParseScript.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Literate/ParseScript.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.Literate/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Literate/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/FSharp.Formatting.Literate/Transformations.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Literate/Transformations.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.Markdown/FSharp.Formatting.Markdown.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Markdown/FSharp.Formatting.Markdown.fsproj -------------------------------------------------------------------------------- /src/FSharp.Formatting.Markdown/FsxFormatting.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Markdown/FsxFormatting.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.Markdown/HtmlFormatting.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Markdown/HtmlFormatting.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.Markdown/LatexFormatting.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Markdown/LatexFormatting.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.Markdown/Markdown.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Markdown/Markdown.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.Markdown/MarkdownFormatting.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Markdown/MarkdownFormatting.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.Markdown/MarkdownModel.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Markdown/MarkdownModel.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.Markdown/MarkdownParser.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Markdown/MarkdownParser.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.Markdown/MarkdownUtils.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Markdown/MarkdownUtils.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.Markdown/PynbFormatting.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting.Markdown/PynbFormatting.fs -------------------------------------------------------------------------------- /src/FSharp.Formatting.Markdown/paket.references: -------------------------------------------------------------------------------- 1 | FSharp.Core -------------------------------------------------------------------------------- /src/FSharp.Formatting/FSharp.Formatting.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting/FSharp.Formatting.fsproj -------------------------------------------------------------------------------- /src/FSharp.Formatting/FSharp.Formatting.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/FSharp.Formatting/FSharp.Formatting.fsx -------------------------------------------------------------------------------- /src/fsdocs-tool/BuildCommand.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/fsdocs-tool/BuildCommand.fs -------------------------------------------------------------------------------- /src/fsdocs-tool/Options.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/fsdocs-tool/Options.fs -------------------------------------------------------------------------------- /src/fsdocs-tool/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/fsdocs-tool/Program.fs -------------------------------------------------------------------------------- /src/fsdocs-tool/ProjectCracker.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/fsdocs-tool/ProjectCracker.fs -------------------------------------------------------------------------------- /src/fsdocs-tool/fsdocs-tool.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/src/fsdocs-tool/fsdocs-tool.fsproj -------------------------------------------------------------------------------- /tests/Benchmarks/benchmark/markdown-example-long-1.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/benchmark/markdown-example-long-1.text -------------------------------------------------------------------------------- /tests/Benchmarks/benchmark/markdown-example-long-2.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/benchmark/markdown-example-long-2.text -------------------------------------------------------------------------------- /tests/Benchmarks/benchmark/markdown-example-medium-1.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/benchmark/markdown-example-medium-1.text -------------------------------------------------------------------------------- /tests/Benchmarks/benchmark/markdown-example-medium-2.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/benchmark/markdown-example-medium-2.text -------------------------------------------------------------------------------- /tests/Benchmarks/benchmark/markdown-example-short-1.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/benchmark/markdown-example-short-1.text -------------------------------------------------------------------------------- /tests/Benchmarks/benchmark/markdown-example-short-2.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/benchmark/markdown-example-short-2.text -------------------------------------------------------------------------------- /tests/Benchmarks/benchmark/markdown-readme.32.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/benchmark/markdown-readme.32.text -------------------------------------------------------------------------------- /tests/Benchmarks/benchmark/markdown-readme.8.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/benchmark/markdown-readme.8.text -------------------------------------------------------------------------------- /tests/Benchmarks/benchmark/markdown-readme.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/benchmark/markdown-readme.text -------------------------------------------------------------------------------- /tests/Benchmarks/entry.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/entry.tex -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/!readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/!readme.txt -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Amps_and_angle_encoding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Amps_and_angle_encoding.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Amps_and_angle_encoding.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Amps_and_angle_encoding.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Auto_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Auto_links.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Auto_links.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Auto_links.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Backslash_escapes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Backslash_escapes.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Backslash_escapes.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Backslash_escapes.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Blockquotes_with_code_blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Blockquotes_with_code_blocks.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Blockquotes_with_code_blocks.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Blockquotes_with_code_blocks.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Code_Blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Code_Blocks.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Code_Blocks.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Code_Blocks.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Code_Spans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Code_Spans.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Code_Spans.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Code_Spans.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Hard_wrapped_paragraphs_with_list_like_lines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Hard_wrapped_paragraphs_with_list_like_lines.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Hard_wrapped_paragraphs_with_list_like_lines.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Hard_wrapped_paragraphs_with_list_like_lines.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Horizontal_rules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Horizontal_rules.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Horizontal_rules.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Horizontal_rules.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Images.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Images.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Images.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Inline_HTML_Advanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Inline_HTML_Advanced.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Inline_HTML_Advanced.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Inline_HTML_Advanced.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Inline_HTML_Simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Inline_HTML_Simple.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Inline_HTML_Simple.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Inline_HTML_Simple.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Inline_HTML_comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Inline_HTML_comments.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Inline_HTML_comments.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Inline_HTML_comments.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Links_inline_style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Links_inline_style.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Links_inline_style.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Links_inline_style.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Links_reference_style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Links_reference_style.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Links_reference_style.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Links_reference_style.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Links_shortcut_references.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Links_shortcut_references.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Links_shortcut_references.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Links_shortcut_references.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Literal_quotes_in_titles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Literal_quotes_in_titles.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Literal_quotes_in_titles.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Literal_quotes_in_titles.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Markdown_Documentation_Basics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Markdown_Documentation_Basics.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Markdown_Documentation_Basics.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Markdown_Documentation_Basics.tex -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Markdown_Documentation_Basics.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Markdown_Documentation_Basics.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Markdown_Documentation_Syntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Markdown_Documentation_Syntax.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Markdown_Documentation_Syntax.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Markdown_Documentation_Syntax.tex -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Markdown_Documentation_Syntax.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Markdown_Documentation_Syntax.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Nested_blockquotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Nested_blockquotes.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Nested_blockquotes.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Nested_blockquotes.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Ordered_and_unordered_lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Ordered_and_unordered_lists.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Ordered_and_unordered_lists.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Ordered_and_unordered_lists.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Strong_and_em_together.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Strong_and_em_together.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Strong_and_em_together.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Strong_and_em_together.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Tabs.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Tabs.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Tabs.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Tidyness.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Tidyness.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mdtest-1.1/Tidyness.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mdtest-1.1/Tidyness.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mstest-0.1/!readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mstest-0.1/!readme.txt -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mstest-0.1/code-inside-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mstest-0.1/code-inside-list.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mstest-0.1/code-inside-list.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mstest-0.1/code-inside-list.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mstest-0.1/line-endings-cr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mstest-0.1/line-endings-cr.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mstest-0.1/line-endings-cr.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mstest-0.1/line-endings-cr.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mstest-0.1/line-endings-crlf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mstest-0.1/line-endings-crlf.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mstest-0.1/line-endings-crlf.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mstest-0.1/line-endings-crlf.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mstest-0.1/line-endings-lf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mstest-0.1/line-endings-lf.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mstest-0.1/line-endings-lf.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mstest-0.1/line-endings-lf.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mstest-0.1/markdown-readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mstest-0.1/markdown-readme.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mstest-0.1/markdown-readme.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mstest-0.1/markdown-readme.tex -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/mstest-0.1/markdown-readme.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/mstest-0.1/markdown-readme.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/pandoc/!readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/pandoc/!readme.txt -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/pandoc/failure-to-escape-less-than.html: -------------------------------------------------------------------------------- 1 |

x<max(a,b)

2 | -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/pandoc/failure-to-escape-less-than.text: -------------------------------------------------------------------------------- 1 | xsilly URL w/ angle brackets.

2 | -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/php-markdown/Links, inline style.text: -------------------------------------------------------------------------------- 1 | [silly URL w/ angle brackets](). 2 | -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/php-markdown/MD5 Hashes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/php-markdown/MD5 Hashes.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/php-markdown/MD5 Hashes.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/php-markdown/MD5 Hashes.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/php-markdown/Nesting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/php-markdown/Nesting.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/php-markdown/Nesting.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/php-markdown/Nesting.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/php-markdown/PHP-Specific Bugs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/php-markdown/PHP-Specific Bugs.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/php-markdown/PHP-Specific Bugs.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/php-markdown/PHP-Specific Bugs.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/php-markdown/Parens in URL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/php-markdown/Parens in URL.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/php-markdown/Parens in URL.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/php-markdown/Parens in URL.text -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/php-markdown/Tight blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/php-markdown/Tight blocks.html -------------------------------------------------------------------------------- /tests/Benchmarks/testfiles/php-markdown/Tight blocks.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Benchmarks/testfiles/php-markdown/Tight blocks.text -------------------------------------------------------------------------------- /tests/Common/MarkdownUnit.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/Common/MarkdownUnit.fs -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/ApiDocsTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/ApiDocsTests.fs -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/AttributeTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/AttributeTests.fs -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/FSharp.ApiDocs.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/FSharp.ApiDocs.Tests.fsproj -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/AttributesTestLib/Attributes.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/AttributesTestLib/Attributes.fs -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/AttributesTestLib/AttributesTestLib.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/AttributesTestLib/AttributesTestLib.fsproj -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/CSharpFormat.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/CSharpFormat.XML -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/CSharpFormat.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/CSharpFormat.dll -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/Deedle.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/Deedle.dll -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/Deedle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/Deedle.xml -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/FAKE/FakeLib.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/FAKE/FakeLib.XML -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/FAKE/FakeLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/FAKE/FakeLib.dll -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/FAKE/FakeLib.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/FAKE/FakeLib.pdb -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/FAKE/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/FAKE/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/FAKE/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/FAKE/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/FsLib1/FsLib1.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/FsLib1/FsLib1.fsproj -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/FsLib1/Library1.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/FsLib1/Library1.fs -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/FsLib1/OperatorsWithFsi.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/FsLib1/OperatorsWithFsi.fs -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/FsLib1/OperatorsWithFsi.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/FsLib1/OperatorsWithFsi.fsi -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/FsLib2/FsLib2.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/FsLib2/FsLib2.fsproj -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/FsLib2/Library2.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/FsLib2/Library2.fs -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/TestLib1/Library1.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/TestLib1/Library1.fs -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/TestLib1/TestLib1.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/TestLib1/TestLib1.fsproj -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/TestLib2/Library2.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/TestLib2/Library2.fs -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/TestLib2/TestLib2.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/TestLib2/TestLib2.fsproj -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/TestLib3/DOM.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/TestLib3/DOM.fs -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/TestLib3/Library3.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/TestLib3/Library3.fs -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/TestLib3/SeeAlso.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/TestLib3/SeeAlso.fs -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/TestLib3/TestLib3.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/TestLib3/TestLib3.fsproj -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/TestLib3/UndocumentedModule.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/TestLib3/UndocumentedModule.fs -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/crefLib1/Library1.fs: -------------------------------------------------------------------------------- 1 | namespace crefLib1 2 | 3 | type Class1() = 4 | member this.X = "F#" 5 | -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/crefLib1/crefLib1.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/crefLib1/crefLib1.fsproj -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/crefLib2/Library2.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/crefLib2/Library2.fs -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/crefLib2/crefLib2.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/crefLib2/crefLib2.fsproj -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/crefLib3/Class3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/crefLib3/Class3.cs -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/crefLib3/Properties/AssemblyInfo3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/crefLib3/Properties/AssemblyInfo3.cs -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/crefLib3/crefLib3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/crefLib3/crefLib3.csproj -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/crefLib4/Class4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/crefLib4/Class4.cs -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/crefLib4/Properties/AssemblyInfo4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/crefLib4/Properties/AssemblyInfo4.cs -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/crefLib4/crefLib4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/crefLib4/crefLib4.csproj -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/csharpSupport/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/csharpSupport/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/csharpSupport/SampleClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/csharpSupport/SampleClass.cs -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/files/csharpSupport/csharpSupport.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/files/csharpSupport/csharpSupport.csproj -------------------------------------------------------------------------------- /tests/FSharp.ApiDocs.Tests/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.ApiDocs.Tests/paket.references -------------------------------------------------------------------------------- /tests/FSharp.CodeFormat.Tests/CodeFormatTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.CodeFormat.Tests/CodeFormatTests.fs -------------------------------------------------------------------------------- /tests/FSharp.CodeFormat.Tests/FSharp.CodeFormat.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.CodeFormat.Tests/FSharp.CodeFormat.Tests.fsproj -------------------------------------------------------------------------------- /tests/FSharp.Formatting.TestHelpers/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.Formatting.TestHelpers/AssemblyInfo.fs -------------------------------------------------------------------------------- /tests/FSharp.Formatting.TestHelpers/FSharp.Formatting.TestHelpers.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.Formatting.TestHelpers/FSharp.Formatting.TestHelpers.fsproj -------------------------------------------------------------------------------- /tests/FSharp.Formatting.TestHelpers/Script.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.Formatting.TestHelpers/Script.fsx -------------------------------------------------------------------------------- /tests/FSharp.Formatting.TestHelpers/TestHelpers.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.Formatting.TestHelpers/TestHelpers.fs -------------------------------------------------------------------------------- /tests/FSharp.Literate.Tests/DocContentTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.Literate.Tests/DocContentTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Literate.Tests/EvalTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.Literate.Tests/EvalTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Literate.Tests/FSharp.Literate.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.Literate.Tests/FSharp.Literate.Tests.fsproj -------------------------------------------------------------------------------- /tests/FSharp.Literate.Tests/LiterateTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.Literate.Tests/LiterateTests.fs -------------------------------------------------------------------------------- /tests/FSharp.Literate.Tests/Setup.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.Literate.Tests/Setup.fs -------------------------------------------------------------------------------- /tests/FSharp.Literate.Tests/files/_template.fsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/FSharp.Literate.Tests/files/_template.ipynb: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/FSharp.Literate.Tests/files/_template.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/FSharp.Literate.Tests/files/_template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.Literate.Tests/files/_template.tex -------------------------------------------------------------------------------- /tests/FSharp.Literate.Tests/files/folder1/in-folder1.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.Literate.Tests/files/folder1/in-folder1.fsx -------------------------------------------------------------------------------- /tests/FSharp.Literate.Tests/files/folder2/in-folder2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.Literate.Tests/files/folder2/in-folder2.md -------------------------------------------------------------------------------- /tests/FSharp.Literate.Tests/files/seo-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.Literate.Tests/files/seo-page.md -------------------------------------------------------------------------------- /tests/FSharp.Literate.Tests/files/simple1.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.Literate.Tests/files/simple1.fsx -------------------------------------------------------------------------------- /tests/FSharp.Literate.Tests/files/simple2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.Literate.Tests/files/simple2.md -------------------------------------------------------------------------------- /tests/FSharp.Literate.Tests/files/simple3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.Literate.Tests/files/simple3.ipynb -------------------------------------------------------------------------------- /tests/FSharp.Literate.Tests/files/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.Literate.Tests/files/template.html -------------------------------------------------------------------------------- /tests/FSharp.Literate.Tests/ipynb-eval/eval.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.Literate.Tests/ipynb-eval/eval.ipynb -------------------------------------------------------------------------------- /tests/FSharp.Literate.Tests/ipynb-eval/script.fsx: -------------------------------------------------------------------------------- 1 | 2 | 10 + 24 3 | (***include-fsi-output***) -------------------------------------------------------------------------------- /tests/FSharp.Literate.Tests/previous-next/fellowship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.Literate.Tests/previous-next/fellowship.md -------------------------------------------------------------------------------- /tests/FSharp.Literate.Tests/previous-next/return.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.Literate.Tests/previous-next/return.md -------------------------------------------------------------------------------- /tests/FSharp.Literate.Tests/previous-next/two-tower.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.Literate.Tests/previous-next/two-tower.fsx -------------------------------------------------------------------------------- /tests/FSharp.Markdown.Tests/CommonMarkSpecTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.Markdown.Tests/CommonMarkSpecTest.fs -------------------------------------------------------------------------------- /tests/FSharp.Markdown.Tests/Externals.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.Markdown.Tests/Externals.fs -------------------------------------------------------------------------------- /tests/FSharp.Markdown.Tests/FSharp.Markdown.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.Markdown.Tests/FSharp.Markdown.Tests.fsproj -------------------------------------------------------------------------------- /tests/FSharp.Markdown.Tests/Markdown.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.Markdown.Tests/Markdown.fs -------------------------------------------------------------------------------- /tests/FSharp.Markdown.Tests/TestFiles.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/FSharp.Markdown.Tests/TestFiles.fs -------------------------------------------------------------------------------- /tests/commonmark_spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fsprojects/FSharp.Formatting/HEAD/tests/commonmark_spec.json --------------------------------------------------------------------------------