template icon indicating copy to clipboard operation
template copied to clipboard

Fix resume.html space between interests commas

Open elwais opened this issue 1 year ago • 0 comments

While getting the professional portfolio set up for ICS 314, I noticed spacing issues in the "Interests" section of the "Resume" page.

By adding hyphens at the start and end of the Liquid tags and refactoring the one-liner into several lines, spacing issues were fixed while improving readability (at least in my humble opinion).

Before: image

After: image

These were generated from the following set of interests in bio.json:

    "interests": [
        {
            "name": "DevOps"
        },
        {
            "name": "Terminal-based workflows"
        },
        {
            "name": "Linux",
            "keywords": ["Keyword1", "Keyword2"]
        },
        {
            "name": "Digital signal processing",
        }
    ]

More information on whitespace control can be found here.


As an aside, I am not familiar with the processes/etiquette behind contributing via pull requests, and wasn't sure if there was a particular set of guidelines to contributing to Techfolios. Please let me know if I can improve anywhere in that regard.

elwais avatar Sep 03 '24 03:09 elwais