{"id":50888096,"url":"https://github.com/7rikazhexde/zensical-macros-utils","last_synced_at":"2026-06-15T19:00:35.456Z","repository":{"id":275309750,"uuid":"925709648","full_name":"7rikazhexde/zensical-macros-utils","owner":"7rikazhexde","description":"zensical-macros-utils is a zensical-based project that provides macros to extend cards, code blocks, etc, in Zensical documents.","archived":false,"fork":false,"pushed_at":"2026-06-12T02:40:56.000Z","size":7777,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-06-12T04:19:35.132Z","etag":null,"topics":["documentation","jinja2","mkdocs","mkdocs-macros-plugin","mkdocs-material","python"],"latest_commit_sha":null,"homepage":"https://7rikazhexde.github.io/zensical-macros-utils/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/7rikazhexde.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-02-01T14:57:48.000Z","updated_at":"2026-06-12T02:41:01.000Z","dependencies_parsed_at":null,"dependency_job_id":"d37b4af8-dc45-4025-98e4-38819ea10a23","html_url":"https://github.com/7rikazhexde/zensical-macros-utils","commit_stats":null,"previous_names":["7rikazhexde/mkdocs-macros-utils","7rikazhexde/zensical-macros-utils"],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/7rikazhexde/zensical-macros-utils","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/7rikazhexde%2Fzensical-macros-utils","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/7rikazhexde%2Fzensical-macros-utils/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/7rikazhexde%2Fzensical-macros-utils/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/7rikazhexde%2Fzensical-macros-utils/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/7rikazhexde","download_url":"https://codeload.github.com/7rikazhexde/zensical-macros-utils/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/7rikazhexde%2Fzensical-macros-utils/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34376125,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-15T02:00:07.085Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["documentation","jinja2","mkdocs","mkdocs-macros-plugin","mkdocs-material","python"],"created_at":"2026-06-15T19:00:22.913Z","updated_at":"2026-06-15T19:00:35.447Z","avatar_url":"https://github.com/7rikazhexde.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# zensical-macros-utils\n\n[zensical-macros-utils](https://pypi.org/project/zensical-macros-utils/) is a [zensical](https://zensical.org/)-based project that provides macros to extend cards, code blocks, etc, in Zensical documents.\n\n[![pages-build-deployment](https://github.com/7rikazhexde/zensical-macros-utils/actions/workflows/pages/pages-build-deployment/badge.svg?branch=gh-pages)](https://github.com/7rikazhexde/zensical-macros-utils/actions/workflows/pages/pages-build-deployment) [![DOCS](https://img.shields.io/badge/Docs-Click%20Here-blue?colorA=24292e\u0026colorB=0366d6\u0026logo=github)](https://7rikazhexde.github.io/zensical-macros-utils/)\n\n## Features\n\n- **Link Card**: Create link cards with images and descriptions, etc\n- **Gist Code Block**: Embed and syntax-highlight code from GitHub Gists\n- **X/Twitter Card**: Embed tweets with proper styling and dark mode support\n\n## Usage\n\n### Install [zensical-macros-utils](https://pypi.org/project/zensical-macros-utils/)\n\n```bash\n# For pip\npip install zensical-macros-utils\n\n# For uv\nuv add zensical-macros-utils\n```\n\n### Config settings\n\n1. Add the extension to your `zensical.toml`\n\n    ```toml\n    extra_css = [\n        \"stylesheets/macros-utils/link-card.css\",\n        \"stylesheets/macros-utils/gist-cb.css\",\n        \"stylesheets/macros-utils/x-twitter-link-card.css\",\n    ]\n\n    extra_javascript = [\n        \"javascripts/macros-utils/x-twitter-widget.js\",\n    ]\n\n    [project.plugins.macros]\n    modules = [\"zensical_macros_utils\"]\n\n    [project.extra.debug]\n    link_card = false\n    gist_codeblock = false\n    x_twitter_card = false\n    ```\n\n1. Start the development server\n\n    ```bash\n    uv run zensical serve\n    ```\n\nThe plugin will automatically create the required directories and copy CSS/JS files during the build process.\n\n## Documentation\n\nFor detailed usage and examples, please see the [documentation](https://7rikazhexde.github.io/zensical-macros-utils/).\n\n## License\n\nMIT License - see the [LICENSE](./LICENCE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F7rikazhexde%2Fzensical-macros-utils","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F7rikazhexde%2Fzensical-macros-utils","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F7rikazhexde%2Fzensical-macros-utils/lists"}