Skip to content

Commit 88e81da

Browse files
committed
Fix styles
1 parent a5c84bf commit 88e81da

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

core/esmf-aspect-meta-model-java/src/main/java/org/eclipse/esmf/aspectmodel/utils/DescriptionsUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Utility class for extracting and rendering structured content blocks (such as NOTE, EXAMPLE, SOURCE)
2424
* from SAMM-compliant Markdown descriptions.
2525
*
26-
* <p> This class supports parsing multi-line Markdown-style input and extracting semantically significant
26+
* <p>This class supports parsing multi-line Markdown-style input and extracting semantically significant
2727
* sections such as {@code > NOTE: ...}, {@code > EXAMPLE: ...}, and {@code > SOURCE: ...}.
2828
* These blocks can be retrieved as plain text or rendered into HTML using {@link MarkdownHtmlRenderer}.
2929
*/
@@ -86,7 +86,7 @@ public static String toHtml( final Set<String> descriptions ) {
8686
/**
8787
* Extracts all blocks of a specified type (e.g., NOTE, EXAMPLE, SOURCE) from a set of Markdown strings.
8888
*
89-
* <p> Each block is expected to begin with a {@code > TYPE:} line and may span multiple lines,
89+
* <p>Each block is expected to begin with a {@code > TYPE:} line and may span multiple lines,
9090
* each of which begins with {@code >}.
9191
*
9292
* @param descriptions A set of multi-line Markdown description strings.

core/esmf-aspect-meta-model-java/src/main/java/org/eclipse/esmf/aspectmodel/utils/MarkdownHtmlRenderer.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
/**
3030
* A utility class for converting SAMM-flavored Markdown descriptions into HTML.
3131
*
32-
* <p> This renderer supports a limited subset of Markdown syntax and introduces
32+
* <p>This renderer supports a limited subset of Markdown syntax and introduces
3333
* custom processing for specific annotated blocks commonly used in SAMM descriptions,
3434
* such as {@code > NOTE: ...}, {@code > EXAMPLE: ...}, and {@code > SOURCE: ...}.
3535
* These blocks are extracted and rendered into semantically meaningful HTML
@@ -98,8 +98,8 @@ private static String processSpecialBlocks( final String rawMarkdown ) {
9898
/**
9999
* Renders a list of extracted special blocks into HTML.
100100
*
101-
* - For {@code NOTE} and {@code SOURCE}, each entry is rendered in a {@code <div>} with a matching class.<br>
102-
* - For {@code EXAMPLE}, a single example is rendered as a {@code <div>}; multiple examples as a {@code <ul>}.
101+
* <p>- For {@code NOTE} and {@code SOURCE}, each entry is rendered in a {@code <div>} with a matching class.<br>
102+
* - For {@code EXAMPLE}, a single example is rendered as a {@code <div>}; multiple examples as a {@code <ul>}.
103103
*
104104
* @param type The type of the special block (e.g., "NOTE", "EXAMPLE", "SOURCE").
105105
* @param items The list of block contents for that type.

0 commit comments

Comments
 (0)