This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import type { Config } from 'tailwindcss' | |
| import typography from '@tailwindcss/typography' | |
| export default <Partial<Config>>{ | |
| theme: { | |
| extend: { | |
| typography: { | |
| DEFAULT: { | |
| css: { | |
| '--tw-prose-body': 'hsl(var(--foreground))', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| func get_all_files(path: String, file_ext := "", files := []): | |
| var dir = Directory.new() | |
| if dir.open(path) == OK: | |
| dir.list_dir_begin(true, true) | |
| var file_name = dir.get_next() | |
| while file_name != "": | |
| if dir.current_is_dir(): |