Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Syntax Guide #117

Merged
merged 23 commits into from
Dec 19, 2024
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update tests
Mpdreamz committed Dec 19, 2024
commit a40b0dc04a4c0c078430e5544fb3fe9817b93a0d
3 changes: 3 additions & 0 deletions docs/source/docset.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project: 'doc-builder'

Check failure on line 1 in docs/source/docset.yml

GitHub Actions / docs

Not linked in toc: testing/index.md

Check failure on line 1 in docs/source/docset.yml

GitHub Actions / docs

Not linked in toc: testing/req.md
# docs-builder will warn for links to external hosts not declared here
external_hosts:
- slack.com
@@ -25,6 +25,7 @@
- file: admonitions.md
- file: automated_settings.md
- file: code.md
- file: code-callouts.md
- file: conditionals.md
- file: dropdowns.md
- file: example_blocks.md
@@ -42,3 +43,5 @@
- file: tagged_regions.md
- file: titles.md
- folder: testing
children:
- folder: nested
163 changes: 0 additions & 163 deletions docs/source/markup/code.md

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Callouts
title: Code Callouts
---

You can use the regular markdown code block:
@@ -13,6 +13,7 @@ project:
content: CC-BY-4.0 <1>
subject: MyST Markdown
```
1. The license use by myst


### C#
5 changes: 5 additions & 0 deletions docs/source/testing/nested/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
title: Testing Nesting
---

The files in this directory are used for testing purposes. Do not edit these files unless you are working on tests.
2 changes: 1 addition & 1 deletion tests/Elastic.Markdown.Tests/SiteMap/NavigationTests.cs
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ public void ParsesNestedFoldersAndPrefixesPaths()
{
Configuration.ImplicitFolders.Should().NotBeNullOrEmpty();
Configuration.ImplicitFolders.Should()
.Contain("testing");
.Contain("testing/nested");
}
[Fact]
public void ParsesFilesAndPrefixesPaths() =>
Loading