Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to use html Code in gitHub Issue as part of message

Tags:

github

I am Posting An Issue in gitHub I Want the users See my Html Code In message But Codes Are rendred I have tried and and but it doesnt work , how can i set html as part of meesage in github ? thanks

like image 751
Arash Avatar asked Dec 01 '22 17:12

Arash


1 Answers

You could use a "Fenced code blocks"

Just wrap your code in ` (as shown below) and you won't need to indent it by four spaces.

```html
<my html code />
```

The HTML code won't be rendered, and the proper syntax highlighting will apply.

like image 60
VonC Avatar answered Dec 28 '22 09:12

VonC