From fc70b0feaaa1c432d1adbaaee1e9fbf323c5bce2 Mon Sep 17 00:00:00 2001 From: piharpi Date: Thu, 2 Apr 2020 19:55:42 +0700 Subject: [PATCH] add table example --- ...on-notes-from-Intro-to-machine-learning.md | 24 +++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/_posts/python-notes-from-Intro-to-machine-learning/2018-04-14-python-notes-from-Intro-to-machine-learning.md b/_posts/python-notes-from-Intro-to-machine-learning/2018-04-14-python-notes-from-Intro-to-machine-learning.md index ea52e63..aedf3c6 100644 --- a/_posts/python-notes-from-Intro-to-machine-learning/2018-04-14-python-notes-from-Intro-to-machine-learning.md +++ b/_posts/python-notes-from-Intro-to-machine-learning/2018-04-14-python-notes-from-Intro-to-machine-learning.md @@ -17,9 +17,29 @@ That's why I decided to read all of the provided Python modules and implement it So here are some notes and snippets of Python that I've been collecting so far (I'm not even halfway through the course 😝). Also, note that the codes here are still using Python version 2.7. -## Table of Contents +### Example Table overflow-table -## Modules Classes and Functions +
+ +| Markdown | HTML | Rendered Output | +| :---------------------- | :--------------------------------- | :-------------------: | +| `[Example Link](#link)` | `Example Link` | [Example Link](#Link) | +| `_Be Italic_` | `Be Italic` | _Be Italic_ | +| `**Be Bold**` | `Be Italic` | **Be Bold** | + +
+ +\*) _resize to see difference_ + +### Example Table without-overflow + +| Markdown | HTML | Rendered Output | +| :---------------------- | :--------------------------------- | :-------------------: | +| `[Example Link](#link)` | `Example Link` | [Example Link](#Link) | +| `_Be Italic_` | `Be Italic` | _Be Italic_ | +| `**Be Bold**` | `Be Italic` | **Be Bold** | + +\*) _resize to see difference_ ### Main Entry File