Skip to content

Commit 9d6af6c

Browse files
committed
Merge branch 'st4107-develop' into st4-develop
2 parents 1000b46 + 4091134 commit 9d6af6c

6 files changed

Lines changed: 7 additions & 27 deletions

File tree

.github/workflows/ci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
matrix:
2727
python:
28-
- '3.13'
28+
- '3.14'
2929
arch:
3030
- 'x64'
3131
steps:

.github/workflows/ci-syntax-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- build: latest
3333
default_packages: master
3434
steps:
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v6
3636
- uses: SublimeText/syntax-test-action@v2
3737
with:
3838
build: ${{ matrix.build }}

.github/workflows/deploy-gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Python
2121
uses: actions/setup-python@v6
2222
with:
23-
python-version: '3.13'
23+
python-version: '3.14'
2424
- name: Install MkDocs
2525
run: pip install -r docs/requirements.txt
2626
- name: Run MkDocs

messages.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,6 @@
2727
"3.3.0": "messages/3.3.0.md",
2828
"3.4.0": "messages/3.4.0.md",
2929
"3.5.0": "messages/3.5.0.md",
30-
"3.6.0": "messages/3.6.0.md"
30+
"3.6.0": "messages/3.6.0.md",
31+
"3.6.1": "messages/3.6.1.md"
3132
}

messages/next.md

Lines changed: 0 additions & 22 deletions
This file was deleted.

plugins/lint.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -594,8 +594,9 @@ class md023(mddef):
594594
def is_inside_code_block(self, text, s, e):
595595
def calculate_intendation(text, position):
596596
return position - text.rfind("\n", 0, position) - 1
597+
597598
keyword = "```"
598-
block_s = text.rfind(keyword, 0, s-1)
599+
block_s = text.rfind(keyword, 0, s - 1)
599600
block_e = text.find(keyword, e)
600601
block_s_intendation = calculate_intendation(text, block_s)
601602
block_e_intendation = calculate_intendation(text, block_e)

0 commit comments

Comments
 (0)