Text can be
This is page is recreation of
Next paragraph.
Find details about this page on Github. Original project also can be found on Github.
A paragraph following Header 1.
this is a blockquote.
One day I'm gonna make, The onions cry.
Do not take life too seriously. You will never get out of it alive.
// Javascript with syntax highlighting
// thelearn-tech@github
const files = [ 'foo.txt ', '.bar', ' ', 'baz.foo' ];
let filePaths = [];
for (let file of files) {
const fileName = file.trim();
if(fileName) {
const filePath = `~/cool_app/${fileName}`;
filePaths.push(filePath);
}
}
// filePaths = [ '~/cool_app/foo.txt', '~/cool_app/.bar', '~/cool_app/baz.foo']
# Python code with syntax highlighting
# thelearn-tech@github
from os import path
def check_for_file():
print("Does file exist:", path.exists("data.csv"))
if __name__=="__main__":
check_for_file()
| Name | Age | Gender |
|---|---|---|
| Josh | 27 | Male |
| Tom | 25 | Male |
| Olivia | Never Ask | Female |
| This | is a | Table |