Compare commits

...

2 commits

Author SHA1 Message Date
renovate[bot]
ffd40ce3d8
chore(deps): update actions/checkout action to v4 2024-11-15 13:09:22 +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
4 changed files with 4 additions and 3 deletions

View file

@ -16,7 +16,7 @@ jobs:
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v3 uses: actions/checkout@v4
with: with:
# We must fetch at least the immediate parents so that if this is # We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head. # a pull request then we can checkout the head.

View file

@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v4
- name: Prepare - name: Prepare
id: prep id: prep

View file

@ -12,7 +12,7 @@ jobs:
python-version: ['3.7', '3.8', '3.9', '3.10'] python-version: ['3.7', '3.8', '3.9', '3.10']
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:

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;