Created
March 4, 2019 23:42
-
-
Save Glavin001/88acfd445ecdd013b129a412fd180b75 to your computer and use it in GitHub Desktop.
Code Tabs do not allow HMTL comments within code blocks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--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