Logo

Markdown Table (Taylor Swift)

markdown cheat sheet

By Album List

Album Release Year Owned by Taylor Favorite Song Tracks
Taylor Swift 2006 No Our Song 15
Fearless 2021 Yes Fearless 26
Speak Now 2023 Yes I Can See You 22
Red 2021 Yes All Too Well (10 minute version) 30
1989 2014 No Clean 13
Reputation 2017 No Call It What You Want 15
Lover 2019 Yes The Archer 18
Folklore 2020 Yes The Lakes 16
Evermore 2020 Yes Gold Rush 15
Midnights 2022 Yes The Great War 20

By Chronology

Album Release Year Owned by Taylor Favorite Song Tracks
Taylor Swift 2006 No Our Song 15
1989 2014 No Clean 13
Reputation 2017 No Call It What You Want 15
Lover 2019 Yes The Archer 18
Folklore 2020 Yes The Lakes 16
Evermore 2020 Yes Gold Rush 15
Fearless 2021 Yes Fearless 26
Red 2021 Yes All Too Well (10 minute version) 30
Midnights 2022 Yes The Great War 20
Speak Now 2023 Yes I Can See You 22

HTML Table

%%html

<h2>HTML Cell Output from Jupyter</h2>

<!-- Body contains the contents of the Document -->
<body>
    <table class="table">
        <thead>
            <tr>
                <th>Album</th>
                <th>Release Year</th>
                <th>Taylor's Version</th>
                <th>Favorite Song</th>
                <th>Tracks</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td>Taylor Swift</td>
                <td>2006</td>
                <td>No</td>
                <td>Our Song</td>
                <td>15</td>
            </tr>
            <tr>
                <td>1989</td>
                <td>2014</td>
                <td>No</td>
                <td>Clean</td>
                <td>13</td>
            </tr>
            <tr>
                <td>Reputation</td>
                <td>2017</td>
                <td>No</td>
                <td>Call It What You Want</td>
                <td>15</td>
            </tr>
            <tr>
                <td>Lover</td>
                <td>2019</td>
                <td>Yes</td>
                <td>The Archer</td>
                <td>18</td>
            </tr>
            <tr>
                <td>Folklore</td>
                <td>2020</td>
                <td>Yes</td>
                <td>The Lakes</td>
                <td>16</td>
            </tr>
            <tr>
                <td>Evermore</td>
                <td>2020</td>
                <td>Yes</td>
                <td>Gold Rush</td>
                <td>15</td>
            </tr>
            <tr>
                <td>Fearless</td>
                <td>2021</td>
                <td>Yes</td>
                <td>Fearless</td>
                <td>26</td>
            </tr>
            <tr>
                <td>Red</td>
                <td>2021</td>
                <td>Yes</td>
                <td>All Too Well (10 minute version)</td>
                <td>30</td>
            </tr>
            <tr>
                <td>Midnights</td>
                <td>2022</td>
                <td>Yes</td>
                <td>The Great War</td>
                <td>20</td>
            </tr>
            <tr>
                <td>Speak Now</td>
                <td>2023</td>
                <td>Yes</td>
                <td>I Can See You</td>
                <td>22</td>
            </tr>
        </tbody>
    </table>
</body>

HTML Cell Output from Jupyter

Album Release Year Taylor's Version Favorite Song Tracks
Taylor Swift 2006 No Our Song 15
1989 2014 No Clean 13
Reputation 2017 No Call It What You Want 15
Lover 2019 Yes The Archer 18
Folklore 2020 Yes The Lakes 16
Evermore 2020 Yes Gold Rush 15
Fearless 2021 Yes Fearless 26
Red 2021 Yes All Too Well (10 minute version) 30
Midnights 2022 Yes The Great War 20
Speak Now 2023 Yes I Can See You 22

HTML Table in Markdown Cell with JavaScript jquery

Album Release Year Taylor's Version Favorite Song Tracks
Taylor Swift 2006 No Our Song 15
1989 2014 No Clean 13
Reputation 2017 No Call It What You Want 15
Lover 2019 Yes The Archer 18
Folklore 2020 Yes The Lakes 16
Evermore 2020 Yes Gold Rush 15
Fearless 2021 Yes Fearless 26
Red 2021 Yes All Too Well (10 minute version) 30
Midnights 2022 Yes The Great War 20
Speak Now 2023 Yes I Can See You 22

Hacks