Skip to content

Instantly share code, notes, and snippets.

@flxai
flxai / illionaires.ipynb
Created July 22, 2024 22:22
Illionaires
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@flxai
flxai / pandoc-filter-convert-images-webp.py
Created January 26, 2025 23:30
Pandoc filter to convert all images to webp format
#!/usr/bin/env python
"""
Pandoc filter to convert all images to WebP format.
"""
import os
from pandocfilters import toJSONFilter, Image
from PIL import Image as PILImage