Compare commits

...

3 commits

Author SHA1 Message Date
renovate[bot]
2475b322c0
Merge 8e2b356f84 into 60cd179c18 2024-11-15 13:09:28 +00:00
renovate[bot]
8e2b356f84
chore(deps): update actions/setup-python action to v5 2024-11-15 13:09:25 +00:00
Darren Nathanael
60cd179c18
Fixes: #256 - Plain Text Renderer ignores whitespace (#260)
Text aligns to the left when there *should* be whitespaces.

Signed-off-by: Darren Nathanael <github@darrennathanael.com>
2024-11-15 20:08:25 +07:00
2 changed files with 2 additions and 1 deletions

View file

@ -14,7 +14,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4 uses: actions/setup-python@v5
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Install dependencies - name: Install dependencies

View file

@ -11,6 +11,7 @@ article {
font-weight: $baseFontRegular; font-weight: $baseFontRegular;
line-height: 24px; line-height: 24px;
word-break: break-word; word-break: break-word;
white-space: pre;
color: $textColor; color: $textColor;
max-width: 600px; max-width: 600px;