forked from microsoft/PowerToys
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Markdown preview pane (microsoft#1128)
* Added Extension for html post processing * Added unit test poroject for preview pane * Added pipline test and base test function * Added Tests for extension * Added handler and control for markdown * Tests added * Locally working version for markdown * Working image relative url's in markdown * Added CSS to preview display * Updates CSS for code block * Removed html file write comment in markdown control * Updated assembly version and web browser control test
- Loading branch information
1 parent
fb06f11
commit 45e50cf
Showing
11 changed files
with
570 additions
and
388 deletions.
There are no files selected for viewing
186 changes: 93 additions & 93 deletions
186
src/modules/previewpane/MarkDownPreviewHandler/HTMLParsingExtension.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,93 +1,93 @@ | ||
// Copyright (c) Microsoft Corporation | ||
// The Microsoft Corporation licenses this file to you under the MIT license. | ||
// See the LICENSE file in the project root for more information. | ||
|
||
using System; | ||
using System.IO; | ||
using Markdig; | ||
using Markdig.Extensions.Figures; | ||
using Markdig.Extensions.Tables; | ||
using Markdig.Renderers; | ||
using Markdig.Renderers.Html; | ||
using Markdig.Syntax; | ||
using Markdig.Syntax.Inlines; | ||
|
||
namespace MarkDownPreviewHandler | ||
{ | ||
/// <summary> | ||
/// Markdig Extension to process html nodes in markdown AST. | ||
/// </summary> | ||
internal class HTMLParsingExtension : IMarkdownExtension | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the <see cref="HTMLParsingExtension"/> class. | ||
/// </summary> | ||
public HTMLParsingExtension(string baseUrl = "") | ||
{ | ||
this.BaseUrl = baseUrl; | ||
} | ||
|
||
/// <summary> | ||
/// Gets or sets path to directory containing markdown file. | ||
/// </summary> | ||
public string BaseUrl { get; set; } | ||
|
||
/// <inheritdoc/> | ||
public void Setup(MarkdownPipelineBuilder pipeline) | ||
{ | ||
// Make sure we don't have a delegate twice | ||
pipeline.DocumentProcessed -= this.PipelineOnDocumentProcessed; | ||
pipeline.DocumentProcessed += this.PipelineOnDocumentProcessed; | ||
} | ||
|
||
/// <inheritdoc/> | ||
public void Setup(MarkdownPipeline pipeline, IMarkdownRenderer renderer) | ||
{ | ||
} | ||
|
||
/// <summary> | ||
/// Process nodes in markdown AST. | ||
/// </summary> | ||
/// <param name="document">Markdown Document.</param> | ||
public void PipelineOnDocumentProcessed(MarkdownDocument document) | ||
{ | ||
foreach (var node in document.Descendants()) | ||
{ | ||
if (node is Block) | ||
{ | ||
if (node is Table) | ||
{ | ||
node.GetAttributes().AddClass("table table-striped table-bordered"); | ||
} | ||
else if (node is QuoteBlock) | ||
{ | ||
node.GetAttributes().AddClass("blockquote"); | ||
} | ||
else if (node is Figure) | ||
{ | ||
node.GetAttributes().AddClass("figure"); | ||
} | ||
else if (node is FigureCaption) | ||
{ | ||
node.GetAttributes().AddClass("figure-caption"); | ||
} | ||
} | ||
else if (node is Inline) | ||
{ | ||
if (node is LinkInline link && link.IsImage) | ||
{ | ||
if (!Uri.TryCreate(link.Url, UriKind.Absolute, out Uri uriLink)) | ||
{ | ||
link.Url = link.Url.TrimStart('/', '\\'); | ||
this.BaseUrl = this.BaseUrl.TrimEnd('/', '\\'); | ||
uriLink = new Uri(Path.Combine(this.BaseUrl, link.Url)); | ||
link.Url = uriLink.ToString(); | ||
} | ||
|
||
link.GetAttributes().AddClass("img-fluid"); | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
// Copyright (c) Microsoft Corporation | ||
// The Microsoft Corporation licenses this file to you under the MIT license. | ||
// See the LICENSE file in the project root for more information. | ||
|
||
using System; | ||
using System.IO; | ||
using Markdig; | ||
using Markdig.Extensions.Figures; | ||
using Markdig.Extensions.Tables; | ||
using Markdig.Renderers; | ||
using Markdig.Renderers.Html; | ||
using Markdig.Syntax; | ||
using Markdig.Syntax.Inlines; | ||
|
||
namespace MarkdownPreviewHandler | ||
{ | ||
/// <summary> | ||
/// Markdig Extension to process html nodes in markdown AST. | ||
/// </summary> | ||
public class HTMLParsingExtension : IMarkdownExtension | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the <see cref="HTMLParsingExtension"/> class. | ||
/// </summary> | ||
public HTMLParsingExtension(string baseUrl = "") | ||
{ | ||
this.BaseUrl = baseUrl; | ||
} | ||
|
||
/// <summary> | ||
/// Gets or sets path to directory containing markdown file. | ||
/// </summary> | ||
public string BaseUrl { get; set; } | ||
|
||
/// <inheritdoc/> | ||
public void Setup(MarkdownPipelineBuilder pipeline) | ||
{ | ||
// Make sure we don't have a delegate twice | ||
pipeline.DocumentProcessed -= this.PipelineOnDocumentProcessed; | ||
pipeline.DocumentProcessed += this.PipelineOnDocumentProcessed; | ||
} | ||
|
||
/// <inheritdoc/> | ||
public void Setup(MarkdownPipeline pipeline, IMarkdownRenderer renderer) | ||
{ | ||
} | ||
|
||
/// <summary> | ||
/// Process nodes in markdown AST. | ||
/// </summary> | ||
/// <param name="document">Markdown Document.</param> | ||
public void PipelineOnDocumentProcessed(MarkdownDocument document) | ||
{ | ||
foreach (var node in document.Descendants()) | ||
{ | ||
if (node is Block) | ||
{ | ||
if (node is Table) | ||
{ | ||
node.GetAttributes().AddClass("table table-striped table-bordered"); | ||
} | ||
else if (node is QuoteBlock) | ||
{ | ||
node.GetAttributes().AddClass("blockquote"); | ||
} | ||
else if (node is Figure) | ||
{ | ||
node.GetAttributes().AddClass("figure"); | ||
} | ||
else if (node is FigureCaption) | ||
{ | ||
node.GetAttributes().AddClass("figure-caption"); | ||
} | ||
} | ||
else if (node is Inline) | ||
{ | ||
if (node is LinkInline link && link.IsImage) | ||
{ | ||
if (!Uri.TryCreate(link.Url, UriKind.Absolute, out Uri uriLink)) | ||
{ | ||
link.Url = link.Url.TrimStart('/', '\\'); | ||
this.BaseUrl = this.BaseUrl.TrimEnd('/', '\\'); | ||
uriLink = new Uri(Path.Combine(this.BaseUrl, link.Url)); | ||
link.Url = uriLink.ToString(); | ||
} | ||
|
||
link.GetAttributes().AddClass("img-fluid"); | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
162 changes: 88 additions & 74 deletions
162
src/modules/previewpane/MarkDownPreviewHandler/MarkDownPreviewHandler.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,75 +1,89 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProjectGuid>{6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}</ProjectGuid> | ||
<OutputType>Library</OutputType> | ||
<AppDesignerFolder>Properties</AppDesignerFolder> | ||
<RootNamespace>MarkDownPreviewHandler</RootNamespace> | ||
<AssemblyName>MarkDownPreviewHandler</AssemblyName> | ||
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion> | ||
<FileAlignment>512</FileAlignment> | ||
<Deterministic>true</Deterministic> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\Debug\</OutputPath> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<DocumentationFile>bin/Debug/MarkdownPreviewPaneDocumentation.xml</DocumentationFile> | ||
<PlatformTarget>x64</PlatformTarget> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' "> | ||
<DebugType>pdbonly</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>bin\Release\</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<DocumentationFile>bin/Release/commonDocumentation.xml</DocumentationFile> | ||
<PlatformTarget>x64</PlatformTarget> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.Xml.Linq" /> | ||
<Reference Include="System.Data.DataSetExtensions" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
<Reference Include="System.Data" /> | ||
<Reference Include="System.Net.Http" /> | ||
<Reference Include="System.Xml" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="HTMLParsingExtension.cs" /> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Markdig.Signed"> | ||
<Version>0.18.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="StyleCop.Analyzers"> | ||
<Version>1.1.118</Version> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<AdditionalFiles Include="..\..\..\codeAnalysis\StyleCop.json"> | ||
<Link>StyleCop.json</Link> | ||
</AdditionalFiles> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\common\Common.csproj"> | ||
<Project>{af2349b8-e5b6-4004-9502-687c1c7730b1}</Project> | ||
<Name>Common</Name> | ||
</ProjectReference> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProjectGuid>{6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}</ProjectGuid> | ||
<OutputType>Library</OutputType> | ||
<AppDesignerFolder>Properties</AppDesignerFolder> | ||
<RootNamespace>MarkdownPreviewHandler</RootNamespace> | ||
<AssemblyName>MarkdownPreviewHandler</AssemblyName> | ||
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion> | ||
<FileAlignment>512</FileAlignment> | ||
<Deterministic>true</Deterministic> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\Debug\</OutputPath> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<DocumentationFile>bin/Debug/MarkdownPreviewPaneDocumentation.xml</DocumentationFile> | ||
<PlatformTarget>x64</PlatformTarget> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' "> | ||
<DebugType>pdbonly</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>bin\Release\</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<DocumentationFile>bin/Release/commonDocumentation.xml</DocumentationFile> | ||
<PlatformTarget>x64</PlatformTarget> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<SignAssembly>true</SignAssembly> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<AssemblyOriginatorKeyFile>MarkdownPreviewHandler.snk</AssemblyOriginatorKeyFile> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.Windows.Forms" /> | ||
<Reference Include="System.Xml.Linq" /> | ||
<Reference Include="System.Data.DataSetExtensions" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
<Reference Include="System.Data" /> | ||
<Reference Include="System.Net.Http" /> | ||
<Reference Include="System.Xml" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="HTMLParsingExtension.cs" /> | ||
<Compile Include="MarkdownPreviewHandler.cs" /> | ||
<Compile Include="MarkdownPreviewHandlerControl.cs"> | ||
<SubType>Form</SubType> | ||
</Compile> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Markdig.Signed"> | ||
<Version>0.18.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="StyleCop.Analyzers"> | ||
<Version>1.1.118</Version> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<AdditionalFiles Include="..\..\..\codeAnalysis\StyleCop.json"> | ||
<Link>StyleCop.json</Link> | ||
</AdditionalFiles> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\common\Common.csproj"> | ||
<Project>{af2349b8-e5b6-4004-9502-687c1c7730b1}</Project> | ||
<Name>Common</Name> | ||
</ProjectReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="MarkdownPreviewHandler.snk" /> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | ||
</Project> |
Oops, something went wrong.