{"id":13712778,"url":"https://github.com/thomas-neitmann/mdthemes","last_synced_at":"2026-02-28T21:32:34.920Z","repository":{"id":99515696,"uuid":"252674191","full_name":"thomas-neitmann/mdthemes","owner":"thomas-neitmann","description":"Markdown Themes for 'ggplot2'","archived":false,"fork":false,"pushed_at":"2024-07-15T04:23:43.000Z","size":108,"stargazers_count":82,"open_issues_count":5,"forks_count":3,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-24T00:27:57.236Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"R","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thomas-neitmann.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2020-04-03T08:27:50.000Z","updated_at":"2025-02-28T21:21:33.000Z","dependencies_parsed_at":"2024-11-13T23:30:51.299Z","dependency_job_id":"35044006-4beb-4020-8f02-93b9150e1dd9","html_url":"https://github.com/thomas-neitmann/mdthemes","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/thomas-neitmann/mdthemes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomas-neitmann%2Fmdthemes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomas-neitmann%2Fmdthemes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomas-neitmann%2Fmdthemes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomas-neitmann%2Fmdthemes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thomas-neitmann","download_url":"https://codeload.github.com/thomas-neitmann/mdthemes/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomas-neitmann%2Fmdthemes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29952272,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-28T18:42:55.706Z","status":"ssl_error","status_checked_at":"2026-02-28T18:42:48.811Z","response_time":90,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-08-02T23:01:22.553Z","updated_at":"2026-02-28T21:32:34.882Z","avatar_url":"https://github.com/thomas-neitmann.png","language":"R","funding_links":[],"categories":["Themes and aesthetics","R"],"sub_categories":[],"readme":"mdthemes\n================\n\n[![R build\nstatus](https://github.com/thomas-neitmann/mdthemes/workflows/R-CMD-check/badge.svg)](https://github.com/thomas-neitmann/mdthemes/actions)\n[![CRAN\nVersion](https://www.r-pkg.org/badges/version/mdthemes?color=green)](https://cran.r-project.org/package=mdthemes)\n[![Total\nDownloads](http://cranlogs.r-pkg.org/badges/grand-total/mdthemes?color=green)](https://cran.r-project.org/package=mdthemes)\n[![Lifecycle\nStatus](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental)\n\n## Overview\n\n`{mdthemes}` adds support for rendering text as markdown to your\nfavorite `{ggplot2}` themes thanks to the awesome `{ggtext}` package.\n\n## Installation\n\nThe package is available from CRAN.\n\n``` r\ninstall.packages(\"mdthemes\")\n```\n\nAlternatively, you can install the latest development version from\nGitHub.\n\n``` r\nif (!requireNamespace(\"remotes\", quietly = TRUE)) {\n  install.packages(\"remotes\")\n}\nremotes::install_github(\"thomas-neitmann/mdthemes\", upgrade = \"never\")\n```\n\n## Usage\n\nCurrently, `{mdthemes}` contains all themes from `{ggplot2}`,\n`{ggthemes}`, `{hrbrthemes}`, `{tvthemes}` and `{cowplot}` with support\nfor rendering text as markdown. All themes start with `md_` followed by\nthe name of the original theme, e.g. `md_theme_bw()`.\n\n``` r\nlibrary(ggplot2)\nlibrary(mdthemes)\ndata(mtcars)\n\np \u003c- ggplot(mtcars, aes(hp, mpg)) +\n  geom_point() +\n  labs(\n    title = \"This is a **bold** title\",\n    subtitle = \"And an *italics* subtitle\",\n    x = \"**_hp_**\",\n    caption = \"\u003cspan style = 'color:blue'\u003eA blue caption\u003c/span\u003e\"\n  )\n\np + theme_minimal()\np + md_theme_minimal()\n```\n\n\u003cimg src=\"man/figures/README-examples-1.png\" width=\"50%\" /\u003e\u003cimg src=\"man/figures/README-examples-2.png\" width=\"50%\" /\u003e\n\n``` r\np + ggthemes::theme_fivethirtyeight()\np + md_theme_fivethirtyeight()\n```\n\n\u003cimg src=\"man/figures/README-examples_cont-1.png\" width=\"50%\" /\u003e\u003cimg src=\"man/figures/README-examples_cont-2.png\" width=\"50%\" /\u003e\n\n## Going further\n\nTo learn more about `{mdthemes}` check out [this blog\npost](https://thomasadventure.blog/posts/mdthemes-is-on-cran-markdown-powered-themes-for-ggplot2/)\naccompanying the first CRAN release.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthomas-neitmann%2Fmdthemes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthomas-neitmann%2Fmdthemes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthomas-neitmann%2Fmdthemes/lists"}