public async Task DoesNothingIfMetadataKeyDoesNotExist()
            {
                // Given
                TestDocument   document = new TestDocument();
                RenderMarkdown markdown = new RenderMarkdown("meta");

                // When
                TestDocument result = await ExecuteAsync(document, markdown).SingleAsync();

                // Then
                result.ShouldBe(document);
            }
            public async Task CanUseExternalExtensionDirectly()
            {
                TestDocument          document  = new TestDocument();
                TestMarkdownExtension extension = new TestMarkdownExtension();
                RenderMarkdown        markdown  = new RenderMarkdown().UseExtension(extension);

                // When
                await ExecuteAsync(document, markdown);

                // Then
                extension.ReceivedSetup.ShouldBeTrue();
            }
            public async Task DoesNotRenderSpecialAttributesByDefault()
            {
                // Given
                const string   input    = "[link](url){#id .class}";
                const string   output   = @"<p><a href=""url"">link</a>{#id .class}</p>
";
                TestDocument   document = new TestDocument(input);
                RenderMarkdown markdown = new RenderMarkdown();

                // When
                TestDocument result = await ExecuteAsync(document, markdown).SingleAsync();

                // Then
                result.Content.ShouldBe(output, StringCompareShould.IgnoreLineEndings);
            }
            public async Task DoesNotEscapeAtIfDisabled()
            {
                // Given
                const string   input    = "Looking @Good, Man!";
                const string   output   = @"<p>Looking @Good, Man!</p>
";
                TestDocument   document = new TestDocument(input);
                RenderMarkdown markdown = new RenderMarkdown().EscapeAt(false);

                // When
                TestDocument result = await ExecuteAsync(document, markdown).SingleAsync();

                // Then
                result.Content.ShouldBe(output, StringCompareShould.IgnoreLineEndings);
            }
            public async Task UnescapesDoubleAt()
            {
                // Given
                const string   input    = @"Looking @Good, \\@Man!";
                const string   output   = @"<p>Looking &#64;Good, @Man!</p>
";
                TestDocument   document = new TestDocument(input);
                RenderMarkdown markdown = new RenderMarkdown();

                // When
                TestDocument result = await ExecuteAsync(document, markdown).SingleAsync();

                // Then
                result.Content.ShouldBe(output, StringCompareShould.IgnoreLineEndings);
            }
            public async Task CanUseExternalExtension()
            {
                const string input    = "![Alt text](/path/to/img.jpg)";
                const string output   = @"<p><img src=""/path/to/img.jpg"" class=""ui spaced image"" alt=""Alt text"" /></p>
";
                TestDocument document = new TestDocument(input);

                Type[]             o        = { typeof(TestMarkdownExtension) };
                IEnumerable <Type> cast     = o as IEnumerable <Type>;
                RenderMarkdown     markdown = new RenderMarkdown().UseExtensions(cast);

                // When
                TestDocument result = await ExecuteAsync(document, markdown).SingleAsync();

                // Then
                result.Content.ShouldBe(output, StringCompareShould.IgnoreLineEndings);
            }
            public async Task UsePrependLinkRootSetting()
            {
                // Given
                const string         input   = "This is a [link](/link.html)";
                string               output  = @"<p>This is a <a href=""/virtual-dir/link.html"">link</a></p>" + Environment.NewLine;
                TestExecutionContext context = new TestExecutionContext();

                context.Settings[Keys.LinkRoot] = "/virtual-dir";
                TestDocument   document = new TestDocument(input);
                RenderMarkdown markdown = new RenderMarkdown().PrependLinkRoot(true);

                // When
                TestDocument result = await ExecuteAsync(document, context, markdown).SingleAsync();

                // Then
                result.Content.ShouldBe(output, StringCompareShould.IgnoreLineEndings);
            }
            public async Task RendersMarkdown()
            {
                // Given
                const string   input    = @"Line 1
*Line 2*
# Line 3";
                const string   output   = @"<p>Line 1
<em>Line 2</em></p>
<h1>Line 3</h1>
";
                TestDocument   document = new TestDocument(input);
                RenderMarkdown markdown = new RenderMarkdown();

                // When
                TestDocument result = await ExecuteAsync(document, markdown).SingleAsync();

                // Then
                result.Content.ShouldBe(output, StringCompareShould.IgnoreLineEndings);
            }
            public async Task DoesNotRenderDefinitionListWithoutExtensions()
            {
                // Given
                const string   input    = @"Apple
:   Pomaceous fruit of plants of the genus Malus in 
    the family Rosaceae.";
                const string   output   = @"<p>Apple
:   Pomaceous fruit of plants of the genus Malus in
the family Rosaceae.</p>
";
                TestDocument   document = new TestDocument(input);
                RenderMarkdown markdown = new RenderMarkdown();

                // When
                TestDocument result = await ExecuteAsync(document, markdown).SingleAsync();

                // Then
                result.Content.ShouldBe(output, StringCompareShould.IgnoreLineEndings);
            }
Ejemplo n.º 10
0
 public static async Task <int> Main(string[] args) =>
 await Bootstrapper.Factory
 .CreateWeb(args)
 .ConfigureTemplates(templates =>
 {
     var markdownModule = new RenderMarkdown()
                          .UseExtensions()
                          .UseExtension <BootstrapExtension>()
                          .UseExtension <ResponsiveTableExtension>()
                          .UseExtension <PrismJsExtension>();
     if (templates.ContainsKey(MediaTypes.Markdown))
     {
         templates[MediaTypes.Markdown].Module = markdownModule;
     }
     else
     {
         templates.Add(MediaTypes.Markdown,
                       new Template(ContentType.Content, Phase.Process, markdownModule));
     }
 })
 .RunAsync();
            public async Task DoesRenderDefintionListWithSpecificConfiguration()
            {
                // Given
                const string   input    = @"Apple
:   Pomaceous fruit of plants of the genus Malus in 
    the family Rosaceae.";
                const string   output   = @"<dl>
<dt>Apple</dt>
<dd>Pomaceous fruit of plants of the genus Malus in
the family Rosaceae.</dd>
</dl>
";
                TestDocument   document = new TestDocument(input);
                RenderMarkdown markdown = new RenderMarkdown().UseConfiguration("definitionlists");

                // When
                TestDocument result = await ExecuteAsync(document, markdown).SingleAsync();

                // Then
                result.Content.ShouldBe(output, StringCompareShould.IgnoreLineEndings);
            }
            public async Task RendersMarkdownFromMetadataToNewKey()
            {
                // Given
                const string input    = @"Line 1
*Line 2*
# Line 3";
                const string output   = @"<p>Line 1
<em>Line 2</em></p>
<h1>Line 3</h1>
";
                TestDocument document = new TestDocument(new MetadataItems
                {
                    { "meta", input }
                });
                RenderMarkdown markdown = new RenderMarkdown("meta", "meta2");

                // When
                IDocument result = await ExecuteAsync(document, markdown).SingleAsync();

                // Then
                result.GetString("meta2").ShouldBe(output, StringCompareShould.IgnoreLineEndings);
            }