logo

Sublinhado no Markdown

Não há sintaxe para sublinhado no Markdown. Para usar o comando sublinhado, podemos usar a sintaxe HTML para sublinhar o texto no Markdown. Sublinhado é usado para destacar links no Markdown. Portanto, para evitar confusão, o Markdown não o utiliza para sublinhar o texto.

Sublinhar usando HTML

Sublinhar usando HTML não é aplicável em editores online. Mas podemos usá-lo no código do Visual Studio.

Sintaxe

 .... 

O texto é inserido entre a tag e sublinhado.

Onde,

U significa sublinhado

Por exemplo,

 Text 

Saída :

 Text 

Exemplos

Vamos discutir um exemplo baseado em sublinhado no Markdown usando tag HTML.

Exemplo 1:

 The underline tag in Markdown using HTML can be only implemented in visual studio . It does not work in online Markdown editors. If underline is used in any online editor (for example, Dillinger), it will considered it as a normal text, which will be the same syntax as the input. 

Saída:

 The underline tag in Markdown using HTML can be only implemented in visual studio . It does not work in online Markdown editors. If underline is used in any online editor (for example, Dillinger), it will considered it as a normal text, which will be the same syntax as the input.