Open StefanThoma opened 3 months ago
There seems to be some problems with encoding or something:
Misspelled words:
Note to myself, as I won't be able to do it now:
Try to: Run original spellcheck after running:
# Find all .qmd files in the current directory and subdirectories
find . -type f -name "*.qmd" | while read -r file; do
# Remove Markdown-style links [text](URL)
sed -i.bak -E 's/\[([^\]]+)\]\([^)]+\)//g' "$file"
# Remove standalone URLs like <http://example.com>
sed -i.bak -E 's/<([^>]+)>//g' "$file"
# Optionally, remove empty brackets [] that may be left behind
sed -i.bak -E 's/\[\]//g' "$file"
# Clean up backup files
rm "${file}.bak"
done
The bash command should remove all links from all qmd files.
Ideas from today's call:
create_blogpost
helper?@StefanThoma to review
Update: leave as pending for now
Thank you for your Pull Request! We have developed this task checklist to help with the final steps of the process. Completing the below tasks helps to ensure our reviewers can maximize their time on your blog post.
Please check off each taskbox as an acknowledgment that you completed the task or check off that it is not relevant to your Pull Request. This checklist is part of the Github Action workflows and the Pull Request will not be merged into the
main
branch until you have checked off each task.CICD.R
line by line to first check the spelling in your post and then to make sure your code is compatible with our code-style. Address any incongruences by following the instructions in the file!tag(s)
or categories from the current list:c("Metadata", "SDTM", "ADaM", "TLG", "Shiny", "Community", "Conferences", "Submissions", "Technical")
for your blog post. If you cannot find anything that fits your blog post, propose a new tag to the maintainers! Note: if you use a tag not from this list, the "Check Post Tags" CICD pipeline will error. We occasionally tidy up alltags
for consistency.description
field at the top of the markdown document.