From a41cbc3207256cfc73b3acb919cf0064322f7da2 Mon Sep 17 00:00:00 2001 From: nerocui Date: Tue, 16 Jan 2024 22:36:27 -0800 Subject: [PATCH] added header --- .../src/Renderers/ObjectRenderers/CodeBlockRenderer.cs | 4 ++++ .../src/Renderers/ObjectRenderers/Extensions/TableRenderer.cs | 4 ++++ .../Renderers/ObjectRenderers/Extensions/TaskListRenderer.cs | 4 ++++ .../src/Renderers/ObjectRenderers/HeadingRenderer.cs | 4 ++++ .../src/Renderers/ObjectRenderers/HtmlBlockRenderer.cs | 4 ++++ .../ObjectRenderers/Inlines/AutoLinkInlineRenderer.cs | 4 ++++ .../Renderers/ObjectRenderers/Inlines/CodeInlineRenderer.cs | 4 ++++ .../ObjectRenderers/Inlines/ContainerInlineRenderer.cs | 4 ++++ .../ObjectRenderers/Inlines/DelimiterInlineRenderer.cs | 4 ++++ .../ObjectRenderers/Inlines/EmphasisInlineRenderer.cs | 4 ++++ .../ObjectRenderers/Inlines/HtmlEntityInlineRenderer.cs | 4 ++++ .../Renderers/ObjectRenderers/Inlines/HtmlInlineRenderer.cs | 4 ++++ .../ObjectRenderers/Inlines/LineBreakInlineRenderer.cs | 4 ++++ .../Renderers/ObjectRenderers/Inlines/LinkInlineRenderer.cs | 4 ++++ .../ObjectRenderers/Inlines/LiteralInlineRenderer.cs | 4 ++++ .../src/Renderers/ObjectRenderers/ListRenderer.cs | 4 ++++ .../src/Renderers/ObjectRenderers/ParagraphRenderer.cs | 4 ++++ .../src/Renderers/ObjectRenderers/QuoteBlockRenderer.cs | 4 ++++ .../src/Renderers/ObjectRenderers/ThematicBreakRenderer.cs | 4 ++++ .../MarkdownTextBlock/src/Renderers/UWPObjectRenderer.cs | 4 ++++ components/MarkdownTextBlock/src/Renderers/WinUIRenderer.cs | 4 ++++ 21 files changed, 84 insertions(+) diff --git a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/CodeBlockRenderer.cs b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/CodeBlockRenderer.cs index a11c82e53..1dd588194 100644 --- a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/CodeBlockRenderer.cs +++ b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/CodeBlockRenderer.cs @@ -1,3 +1,7 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + using Markdig.Syntax; using CommunityToolkit.Labs.WinUI.MarkdownTextBlock.TextElements; diff --git a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Extensions/TableRenderer.cs b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Extensions/TableRenderer.cs index fed234250..910638295 100644 --- a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Extensions/TableRenderer.cs +++ b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Extensions/TableRenderer.cs @@ -1,3 +1,7 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + using Markdig.Extensions.Tables; using CommunityToolkit.Labs.WinUI.MarkdownTextBlock.TextElements; diff --git a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Extensions/TaskListRenderer.cs b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Extensions/TaskListRenderer.cs index 612bcb376..f8c0e11bb 100644 --- a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Extensions/TaskListRenderer.cs +++ b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Extensions/TaskListRenderer.cs @@ -1,3 +1,7 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + using Markdig.Extensions.TaskLists; using CommunityToolkit.Labs.WinUI.MarkdownTextBlock.TextElements; diff --git a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/HeadingRenderer.cs b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/HeadingRenderer.cs index 5dbc40abf..fe7899126 100644 --- a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/HeadingRenderer.cs +++ b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/HeadingRenderer.cs @@ -1,3 +1,7 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + using Markdig.Syntax; using CommunityToolkit.Labs.WinUI.MarkdownTextBlock.TextElements; diff --git a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/HtmlBlockRenderer.cs b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/HtmlBlockRenderer.cs index 4df9f35a5..1d44bde5f 100644 --- a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/HtmlBlockRenderer.cs +++ b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/HtmlBlockRenderer.cs @@ -1,3 +1,7 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + using HtmlAgilityPack; using Markdig.Syntax; diff --git a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/AutoLinkInlineRenderer.cs b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/AutoLinkInlineRenderer.cs index 0b3234127..4e9d01f06 100644 --- a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/AutoLinkInlineRenderer.cs +++ b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/AutoLinkInlineRenderer.cs @@ -1,3 +1,7 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + using Markdig.Syntax.Inlines; using CommunityToolkit.Labs.WinUI.MarkdownTextBlock.TextElements; diff --git a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/CodeInlineRenderer.cs b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/CodeInlineRenderer.cs index aed90a44d..d95d8634d 100644 --- a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/CodeInlineRenderer.cs +++ b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/CodeInlineRenderer.cs @@ -1,3 +1,7 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + using Markdig.Syntax.Inlines; using CommunityToolkit.Labs.WinUI.MarkdownTextBlock.TextElements; diff --git a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/ContainerInlineRenderer.cs b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/ContainerInlineRenderer.cs index fe2b73f7e..47a807c22 100644 --- a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/ContainerInlineRenderer.cs +++ b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/ContainerInlineRenderer.cs @@ -1,3 +1,7 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + using Markdig.Syntax.Inlines; namespace CommunityToolkit.Labs.WinUI.MarkdownTextBlock.Renderers.ObjectRenderers.Inlines; diff --git a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/DelimiterInlineRenderer.cs b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/DelimiterInlineRenderer.cs index 27c3aa9db..6d06376a4 100644 --- a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/DelimiterInlineRenderer.cs +++ b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/DelimiterInlineRenderer.cs @@ -1,3 +1,7 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + using Markdig.Syntax.Inlines; namespace CommunityToolkit.Labs.WinUI.MarkdownTextBlock.Renderers.ObjectRenderers.Inlines; diff --git a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/EmphasisInlineRenderer.cs b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/EmphasisInlineRenderer.cs index 538117475..ff82ff20c 100644 --- a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/EmphasisInlineRenderer.cs +++ b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/EmphasisInlineRenderer.cs @@ -1,3 +1,7 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + using Markdig.Syntax.Inlines; using CommunityToolkit.Labs.WinUI.MarkdownTextBlock.TextElements; diff --git a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/HtmlEntityInlineRenderer.cs b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/HtmlEntityInlineRenderer.cs index 943e85299..5f7a55a89 100644 --- a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/HtmlEntityInlineRenderer.cs +++ b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/HtmlEntityInlineRenderer.cs @@ -1,3 +1,7 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + using Markdig.Syntax.Inlines; namespace CommunityToolkit.Labs.WinUI.MarkdownTextBlock.Renderers.ObjectRenderers.Inlines; diff --git a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/HtmlInlineRenderer.cs b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/HtmlInlineRenderer.cs index 083a36939..503c39df0 100644 --- a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/HtmlInlineRenderer.cs +++ b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/HtmlInlineRenderer.cs @@ -1,3 +1,7 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + using HtmlAgilityPack; using Markdig.Syntax.Inlines; diff --git a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/LineBreakInlineRenderer.cs b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/LineBreakInlineRenderer.cs index 90ea77392..79e57a3fc 100644 --- a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/LineBreakInlineRenderer.cs +++ b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/LineBreakInlineRenderer.cs @@ -1,3 +1,7 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + using Markdig.Syntax.Inlines; using CommunityToolkit.Labs.WinUI.MarkdownTextBlock.TextElements; diff --git a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/LinkInlineRenderer.cs b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/LinkInlineRenderer.cs index b3e8d1994..fa05d400a 100644 --- a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/LinkInlineRenderer.cs +++ b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/LinkInlineRenderer.cs @@ -1,3 +1,7 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + using Markdig.Syntax.Inlines; using CommunityToolkit.Labs.WinUI.MarkdownTextBlock.TextElements; diff --git a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/LiteralInlineRenderer.cs b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/LiteralInlineRenderer.cs index 35bff4d83..e6777867d 100644 --- a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/LiteralInlineRenderer.cs +++ b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/Inlines/LiteralInlineRenderer.cs @@ -1,3 +1,7 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + using Markdig.Syntax.Inlines; namespace CommunityToolkit.Labs.WinUI.MarkdownTextBlock.Renderers.ObjectRenderers.Inlines; diff --git a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/ListRenderer.cs b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/ListRenderer.cs index 35bb4b4b0..aa8034bb5 100644 --- a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/ListRenderer.cs +++ b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/ListRenderer.cs @@ -1,3 +1,7 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + using Markdig.Syntax; using CommunityToolkit.Labs.WinUI.MarkdownTextBlock.TextElements; diff --git a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/ParagraphRenderer.cs b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/ParagraphRenderer.cs index 2ace31288..b4f9f20f6 100644 --- a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/ParagraphRenderer.cs +++ b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/ParagraphRenderer.cs @@ -1,3 +1,7 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + using Markdig.Syntax; using CommunityToolkit.Labs.WinUI.MarkdownTextBlock.TextElements; diff --git a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/QuoteBlockRenderer.cs b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/QuoteBlockRenderer.cs index c5d3425f0..71d429272 100644 --- a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/QuoteBlockRenderer.cs +++ b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/QuoteBlockRenderer.cs @@ -1,3 +1,7 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + using Markdig.Syntax; using CommunityToolkit.Labs.WinUI.MarkdownTextBlock.TextElements; diff --git a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/ThematicBreakRenderer.cs b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/ThematicBreakRenderer.cs index 1995b08c7..9ee2356b7 100644 --- a/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/ThematicBreakRenderer.cs +++ b/components/MarkdownTextBlock/src/Renderers/ObjectRenderers/ThematicBreakRenderer.cs @@ -1,3 +1,7 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + using Markdig.Syntax; using CommunityToolkit.Labs.WinUI.MarkdownTextBlock.TextElements; diff --git a/components/MarkdownTextBlock/src/Renderers/UWPObjectRenderer.cs b/components/MarkdownTextBlock/src/Renderers/UWPObjectRenderer.cs index c959e566a..792cdecd0 100644 --- a/components/MarkdownTextBlock/src/Renderers/UWPObjectRenderer.cs +++ b/components/MarkdownTextBlock/src/Renderers/UWPObjectRenderer.cs @@ -1,3 +1,7 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + using Markdig.Renderers; using Markdig.Syntax; diff --git a/components/MarkdownTextBlock/src/Renderers/WinUIRenderer.cs b/components/MarkdownTextBlock/src/Renderers/WinUIRenderer.cs index 15c3acf81..af4d6cb01 100644 --- a/components/MarkdownTextBlock/src/Renderers/WinUIRenderer.cs +++ b/components/MarkdownTextBlock/src/Renderers/WinUIRenderer.cs @@ -1,3 +1,7 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + using CommunityToolkit.Labs.WinUI.MarkdownTextBlock.Renderers.ObjectRenderers; using CommunityToolkit.Labs.WinUI.MarkdownTextBlock.Renderers.ObjectRenderers.Inlines; using CommunityToolkit.Labs.WinUI.MarkdownTextBlock.Renderers.ObjectRenderers.Extensions;