mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
Introduce the DOC_MARKDOWN_REFERENCE_LABEL container element to support complex labels (comment data + inline code). #IDEA-364475 Fixed GitOrigin-RevId: a04680040c38223b88c63fd8df19be1c9593923c
18 lines
423 B
Java
18 lines
423 B
Java
|
|
/// Single liner code block:
|
|
/// `Hello world`
|
|
///
|
|
/// No tags are interpreted inside them
|
|
/// `{@link java.lang.String niceLink}`
|
|
///
|
|
/// No markdown markup is interpreted inside them
|
|
/// `_Hello_ <code>`
|
|
///
|
|
/// Code span inside a link
|
|
/// [my text with `a code span`!][java.lang.String]
|
|
///
|
|
/// This is a broken inline code span
|
|
/// `Start of broken code span
|
|
///
|
|
/// end of broken code span`
|
|
class MarkdownCodeBlock {} |