github table markdown code example
Example 1: table markdown github
| First Header | Second Header |
| ------------- | ------------- |
| Content Cell | Content Cell |
| Content Cell | Content Cell |
Example 2: markdown code snippet
```javascript
var s = "JavaScript syntax highlighting";
alert(s);
```
```python
s = "Python syntax highlighting"
print s
```
```
No language indicated, so no syntax highlighting.
But let's throw in a <b>tag</b>.
```
Example 3: how to draw table in readme file
Attempt |
--- | --- | --- | --- |--- |--- |--- |--- |--- |--- |--- |---
Seconds | 301 | 283 | 290 | 286 | 289 | 285 | 287 | 287 | 272 | 276 | 269
Example 4: md strikethrough
~~This text is struckthrough.~~ This one isn’t.mixed
Example 5: github markdown table of contents example
<!-- Where ever you want a table of contents item to be, which will
present itself as a hyperlink that will navigate to the part of the
page you want it to, use the syntax below -->
- [Example Table of Contents Item](
- [OneWord](
<!-- What is in the square brackets is the text that will appear
in the hyperlink, and in the curved bracket is what is used to navigate
so you can keep the Text the same just separate the words with hyphens
then use a markdown heading for the point you want to navigate to
-->