Skip to content

Instantly share code, notes, and snippets.

@Glavin001
Created March 4, 2019 23:42
Show Gist options
  • Save Glavin001/88acfd445ecdd013b129a412fd180b75 to your computer and use it in GitHub Desktop.
Save Glavin001/88acfd445ecdd013b129a412fd180b75 to your computer and use it in GitHub Desktop.
Code Tabs do not allow HMTL comments within code blocks
<!--DOCUSAURUS_CODE_TABS-->
<!--JavaScript-->
```js
console.log('Hello, world!');
```
<!--Python-->
```py
print('Hello, world!')
```
<!--C-->
```C
#include <stdio.h>
int main() {
printf("Hello World!");
return 0;
}
```
<!--Pascal-->
```Pascal
program HelloWorld;
begin
WriteLn('Hello, world!');
end.
```
<!--HTML-->
```HTML
<p>This is a paragraph.</p>
<strong>This is a bolded element.</strong>
```
```HTML
<p>This is a paragraph.</p>
<!--This is a comment-->
<strong>This is a bolded element.</strong>
```
<!--END_DOCUSAURUS_CODE_TABS-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment