Skip to content

Commit e81a6b7

Browse files
committed
fix callout.
1 parent 497545b commit e81a6b7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

source/slang/slang-doc-markdown-writer.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -2066,16 +2066,19 @@ void DeclDocumentation::writeSection(StringBuilder& out, DocMarkdownWriter* writ
20662066
out << "> #### Deprecated Feature\n";
20672067
out << "> The feature described in this page is marked as deprecated, and may be removed in a future release.\n";
20682068
out << "> Users are advised to avoid using this feature, and to migrate to a newer alternative.\n";
2069+
out << "\n";
20692070
return;
20702071
case DocPageSection::ExperimentalCallout:
20712072
out << "> #### Experimental Feature\n";
20722073
out << "> The feature described in this page is marked as experimental, and may be subject to change in future releases.\n";
20732074
out << "> Users are advised that any code that depend on this feature may not be compilable by future versions of the compiler.\n";
2075+
out << "\n";
20742076
return;
20752077
case DocPageSection::InternalCallout:
20762078
out << "> #### Internal Feature\n";
20772079
out << "> The feature described in this page is marked as an internal implementation detail, and is not intended for use by end-users.\n";
20782080
out << "> Users are advised to avoid using this declaration directly, as it may be removed or changed in future releases.\n";
2081+
out << "\n";
20792082
return;
20802083
}
20812084
if (sectionDoc && sectionDoc->ownedText.getLength() > 0)

0 commit comments

Comments
 (0)