summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2025-01-28fix google analytic while generating the config fileJimmyRespawn
2025-01-26Merge pull request #70 from OleMussmann/mainFrancesco Tomaselli
Fix mermaid diagrams
2025-01-25fix mermaid diagram renderingOle Mussmann
closes #69
2025-01-23Update CONTRIBUTING.mdFrancesco Tomaselli
2025-01-22Merge pull request #67 from edfloreshz-ext/fediverseFrancesco Tomaselli
Add fediverse meta tag
2025-01-22Merge pull request #68 from rbbhn/spacegray-themeFrancesco Tomaselli
Add base-16-default-schemes as color palettes
2025-01-22add: fediverse documentation to wikiEduardo Flores
2025-01-21Added reference to base-16 themes in wikirbbhn
2025-01-21Added base16-default themesrbbhn
2025-01-21Added reference to spacegray theme in wikirbbhn
2025-01-21Removed unneeded commentsrbbhn
2025-01-21Added spacegray.cssrbbhn
2025-01-21Initial commitrbbhn
2025-01-21Added spacegray.css themerbbhn
2025-01-20fix: change property for nameEduardo Flores
2025-01-20add: fediverse meta tagEduardo Flores
2025-01-17Merge pull request #64 from arunmathaisk/mainFrancesco Tomaselli
2025-01-16feat(copy-code): To allow user to copy contents within code block to clipboardArun Mathai
fix(ui): corrections told by tomfran fix(ui): add more contrast to button. fix(ui): loading js as deferred
2025-01-04Merge pull request #62 from deining/fix-typosFrancesco Tomaselli
2025-01-04Wiki: fix typosAndreas Deininger
2025-01-03Update readme and screenshotsFrancesco
2025-01-03Update CONTRIBUTING.mdFrancesco Tomaselli
2025-01-03Create CODE_OF_CONDUCT.mdFrancesco Tomaselli
2025-01-03Create CONTRIBUTING.mdFrancesco Tomaselli
2025-01-03Merge pull request #61 from crnh/mainFrancesco Tomaselli
Add instructions to install as a hugo module
2025-01-02Add instructions to install as a hugo modulecrnh
2025-01-01Add disable comment wikiFrancesco
2025-01-01Merge pull request #59 from Senophyx/mainFrancesco Tomaselli
Adding parameter `disableComment` to disable Giscus comment on specific post.
2025-01-01Modified wikiFrancesco
2025-01-01Removed hardcoded contributorsFrancesco
2025-01-01Add wiki sourceFrancesco
2024-12-31update readmeFrancesco
2024-12-31ReadmeFrancesco
2024-12-25Re-order if statementSenophyx
2024-12-25Adding features to disable comment on specific postSenophyx
2024-12-24Update READMEFrancesco
2024-12-24Updated READMEFrancesco
2024-12-24Merge pull request #57 from crnh/mainFrancesco Tomaselli
Add support for installing theme as Hugo module
2024-12-23Change GitHub usercrnh
2024-12-23Add go module filecrnh
2024-11-27Replace existing social icons definition with 3227 icons from Simple IconsFrancesco
2024-11-23Merge pull request #52 from jpvg10/fix-footer-mathFrancesco Tomaselli
Fix: overwriting footer.html breaks math
2024-11-23move math block to baseof.htmlJuan Pablo Valencia
2024-11-19Merge pull request #50 from jpvg10/translate-datesFrancesco Tomaselli
2024-11-18Increased max image height, heading anchor tag to monospaceFrancesco
2024-11-18Merge pull request #49 from runofthemillgeek/feat/heading-anchorsFrancesco Tomaselli
Add article heading anchors
2024-11-18Merge pull request #48 from runofthemillgeek/feat/img-width-height-attrsFrancesco Tomaselli
Add width and height attrs for local images
2024-11-18adding support for translating datesJuan Pablo Valencia
2024-11-17Add width and height attrs for local imagesSangeeth Sudheer
Image render hook now computes width/height of local images and adds them as attributes. This patch also adds relevant CSS changes to prevent stretchy images. The main reason for this change is to avoid content shifts when images load. Without providing width/height, browser doesn't have info to know the aspect ratio to reserve some space until the image loads. With this change, browser knows the intrinsic size and aspect-ratio to reserve space and avoid content shifts in the page. I believe this also fixes an issue I face in Safari where sometimes, an image below the fold wouldn't load and thus have zero height because it has loading="lazy". To avoid images getting stretched and images overflow/filling the entire screen when their intrinsic size is larger than the container size, I've added some CSS. A configurable `max-height` is present which is used for `figure img` elements. This especially helps when you have tall images like mobile screenshots.
2024-11-17Add article heading anchorsSangeeth Sudheer
Adds heading anchors (#) that appear when user hovers over headings in articles. Clicking the anchor will scroll viewport until heading is aligned to top and update the address bar with the hash. This makes it easy to copy URLs that link to a specific heading in the article.