# ```python
# print "Hello World"
# ```
#
# ```javascript
# console.log("Hello World")
# ```
#
#
# Gives
# ```python
# print "Hello World"
# ```
#
# ```javascript
# console.log("Hello World")
# ```
#
# And a table like this :
#
#
# | This | is |
# |------|------|
# | a | table|
#
#
# A nice HTML Table
#
# | This | is |
# |------|------|
# | a | table|
# ## General HTML
#
# Because Markdown is a superset of HTML you can even add things like HTML tables:
#
#
#
# Header 1 |
# Header 2 |
#
#
# row 1, cell 1 |
# row 1, cell 2 |
#
#
# row 2, cell 1 |
# row 2, cell 2 |
#
#
# ## Local files
#
# If you have local files in your Notebook directory, you can refer to these files in Markdown cells directly:
#
# [subdirectory/]
#
# For example, in the images folder, we have the Python logo:
#
#
#
#
#
# and a video with the HTML5 video tag:
#
#
#
#
#
# These do not embed the data into the notebook file, and require that the files exist when you are viewing the notebook.
# ### Security of local files
#
# Note that this means that the IPython notebook server also acts as a generic file server
# for files inside the same tree as your notebooks. Access is not granted outside the
# notebook folder so you have strict control over what files are visible, but for this
# reason it is highly recommended that you do not run the notebook server with a notebook
# directory at a high level in your filesystem (e.g. your home directory).
#
# When you run the notebook in a password-protected manner, local file access is restricted
# to authenticated users unless read-only views are active.
# ### Markdown attachments
#
# Since Jupyter notebook version 5.0, in addition to referencing external file you can attach a file to a markdown cell.
# To do so drag the file from in a markdown cell while editing it:
#
# ![pycon-logo.jpg](attachment:pycon-logo.jpg)
#
# Files are stored in cell metadata and will be automatically scrubbed at save-time if not referenced. You can recognized attached images from other files by their url that starts with `attachment:`. For the image above:
#
# ![pycon-logo.jpg](attachment:pycon-logo.jpg)
#
# Keep in mind that attached files will increase the size of your notebook.
#
# You can manually edit the attachement by using the `View > Cell Toolbar > Attachment` menu, but you should not need to.