Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
who asks? committed Oct 21, 2024
1 parent 0fad7f5 commit 3d3a56c
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pelican.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Checkout code
uses: actions/checkout
- name: Install Pelican
run: pip install pelican[markdown] pelican-tag-cloud
run: pip install pelican[markdown] pelican-tag-cloud pymdownx
- name: Build site
run: pelican content
- name: Deploy site
Expand Down
5 changes: 5 additions & 0 deletions content/projects/msync/logfile.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,8 @@ Summary: Remove watching logfile, use stdin of process to rotate last 1000 lines
Remove the file watcher because if file gets to big:
* rest of the logs go to other files and
* it takes to long to render and highlight fucked up UX

* [ ] Remove file watcher
* [ ] Remove parsing from file
* [ ] Add FIFO ~~buffer~~
* [x] Add partial updating ==QTextBrowser==
36 changes: 36 additions & 0 deletions pelicanconf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,42 @@
CATEGORY_FEED_ATOM = "feeds/{slug}.atom.xml"
TAG_CLOUD_BADGE = True

MARKDOWN = {
'extension_configs': {
'markdown.extensions.toc': {},
'markdown.extensions.extra': {},
'markdown.extensions.meta': {},
'markdown.extensions.tables': {},
'markdown.extensions.fenced_code': {},
'markdown.extensions.footnotes': {},
'markdown.extensions.attr_list': {},
'markdown.extensions.def_list': {},
'markdown.extensions.abbr': {},
'markdown.extensions.nl2br': {},
'markdown.extensions.smarty': {},
'markdown.extensions.abbr': {},
'markdown.extensions.sane_lists': {},
'markdown.extensions.md_in_html': {},
'markdown.extensions.toc': {},
'markdown.extensions.wikilinks': {},
'pymdownx.mark': {},
'pymdownx.emoji': {},
'pymdownx.progressbar': {},
'pymdownx.tilde': {},
'pymdownx.tasklist': {},
}
}

PLUGINS = [
]

ANALYTICS = """
<style>
ul.checkbox li {
list-style-type: none;
}
</style>
"""
# Blogroll
LINKS = (
("Pelican", "https://getpelican.com/"),
Expand Down

0 comments on commit 3d3a56c

Please sign in to comment.