Markdown is a lightweight markup language that you can use to add formatting elements to plaintext text documents. Created by John Gruber in 2004, Markdown is now one of the worldβs most popular markup languages.
# This is an tagMarkdown is a lightweight markup language that you can use to add formatting elements to plaintext text documents. Created by John Gruber in 2004, Markdown is now one of the worldβs most popular markup languages.
# This is an tagPeople
:bowtie: |
π :smile: |
π :laughing: |
|---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
| #!/usr/bin/env python | |
| """ | |
| StarHScale a Horizontal slider that uses stars | |
| Copyright (C) 2006 Mark Mruss <selsine@gmail.com> | |
| This library is free software; you can redistribute it and/or | |
| modify it under the terms of the GNU Lesser General Public | |
| License as published by the Free Software Foundation; either |
| import csv | |
| import json | |
| from flask import Flask, render_template | |
| # reference: https://stackoverflow.com/questions/29631711/python-to-parent-child-json | |
| # create a helper class for each tree node | |
| class Node(object): | |
| # generate new node | |
| def __init__(self, cluster): |