-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpre-commit
More file actions
executable file
·64 lines (56 loc) · 2.63 KB
/
Copy pathpre-commit
File metadata and controls
executable file
·64 lines (56 loc) · 2.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env bash
###############################################################################
# #
# Copyright 2025 Simon Brandt #
# #
# Licensed under the Apache License, Version 2.0 (the "License"); #
# you may not use this file except in compliance with the License. #
# You may obtain a copy of the License at #
# #
# http://www.apache.org/licenses/LICENSE-2.0 #
# #
# Unless required by applicable law or agreed to in writing, software #
# distributed under the License is distributed on an "AS IS" BASIS, #
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
# See the License for the specific language governing permissions and #
# limitations under the License. #
# #
###############################################################################
# Author: Simon Brandt
# E-Mail: simon.brandt@uni-greifswald.de
# Last Modification: 2025-10-01
# Warning: The script will stage all changes in the Markdown files.
# Run the MarkdownTools for any Markdown file to be committed.
# As `git diff` outputs only the filenames relative to the repository's
# base directory, switch to this directory, if the script is called from
# `.git/hooks` and fetch the absolute path of the directory from
# `git rev-parse` to prepend it to each filename.
if [[ "${PWD: -10}" == ".git/hooks" ]]; then
cd ../.. || exit 1
fi
mapfile -t files < <(git diff --cached --name-only HEAD)
dir="$(git rev-parse --show-toplevel)"
for file in "${files[@]}"; do
if [[ "${file: -3}" != ".md" ]]; then
continue
elif [[ "${file}" == */* ]]; then
cd "${file%/*.md}" || exit 1
fi
file="${dir}/${file}"
bash create_toc.sh \
--exclude-headings="Table of contents" \
--exclude-levels=1 \
--in-place \
"${file}"
bash include_file.sh "${file}"
bash create_captions.sh "${file}"
bash create_toc.sh \
--exclude-headings="Table of contents" \
--exclude-levels=1 \
--in-place \
"${file}"
bash split_sections.sh \
--to-headings \
"${file}"
git add '*.md'
done