Comment déplacer la table à gauche dans Markdown

step1: First create a Code cell (not markdown) just above
your markdown cell where you want to show your table.
step2: Then write the following in your Code cell inside it.
%%html
<style>
table {float:left}
</style>

Step3: Run your Code cell and now your markdwon will appear left shifted.
Darkstar