diff --git a/R/taxonomy.R b/R/taxonomy.R index 850dfc3..2a248bb 100644 --- a/R/taxonomy.R +++ b/R/taxonomy.R @@ -1,6 +1,6 @@ #' NUCC Provider Taxonomy Code Set #' -#' `taxonomy_codes()` returns a [tibble()] of the current Health Care Provider +#' `taxonomy()` returns a [tibble()] of the current Health Care Provider #' Taxonomy code set #' #' __Update Frequency__: _Biannually_ diff --git a/_pkgdown.yml b/_pkgdown.yml index 9f8a29a..1ec09d7 100644 --- a/_pkgdown.yml +++ b/_pkgdown.yml @@ -1,4 +1,91 @@ url: https://andrewallenbruce.github.io/northstar/ + template: bootstrap: 5 +home: + title: northstar • Tidy Healthcare Revenue Integrity Tools + description: > + Tidy tools for wrangling and analyzing healthcare revenue cycles. + sidebar: + structure: [links, license, community, citation, authors, dev] + +navbar: + structure: + left: + - intro + - reference + - articles + right: + - home + - news + - github + - twitter + - linkedin + components: + home: + icon: fas fa-home fa-lg + text: "" + href: index.html + intro: + icon: ~ + text: Getting started + href: articles/fee-schedule.html + reference: + text: Reference + href: reference/index.html + articles: + text: Articles + menu: + - text: Dictionary + href: articles/columns.html + news: + icon: far fa-newspaper fa-lg + href: news/index.html + text: "" + title: "Changelog" + github: + icon: fab fa-github fa-lg + href: https://github.com/andrewallenbruce/northstar + linkedin: + icon: fas fa-linkedin fa-lg + href: https://www.linkedin.com/in/andybruce1/ + twitter: + icon: fab fa-twitter fa-lg + href: http://twitter.com/aabrucehimni + +reference: + +- title: Medical Codesets + desc: > + Medical Coding & Billing Codesets. + contents: + - adjustment_codes + - icd10_search + - hcpcs_search + - lcd + - ncd + - rvu + - pfs + - gpci + - level2 + - descriptors + - rbcs + - opps + - msdrg + - modifiers + - taxonomy + +- title: Labelling Functions + desc: > + Utilities to label Codeset outputs. + contents: + - starts_with("case_") + +- title: Calculations + desc: > + Functions to calculate Fee Schedule Amounts. + contents: + - limiting_charge + - non_participating_amount + - calculate_amounts diff --git a/vignettes/extra.css b/vignettes/extra.css new file mode 100644 index 0000000..b9efba3 --- /dev/null +++ b/vignettes/extra.css @@ -0,0 +1,88 @@ +h1, .h1 { + font-size: 2.5rem; + line-height: 1em; +} + +h2, .h2 { + font-size: 2rem; + line-height: 1em; +} + +h3, .h3 { + font-size: 1.75rem; +} + +h4, .h4 { + font-size: 1.5rem; +} + +dt { + color: rgb(38, 38, 38); + text-decoration: underline; + text-decoration-style: solid; + text-underline-offset: 4px; + font-family: monospace; + border-top-style: dotted; + border-top-width: 1px; + border-top-color: gray; + margin-bottom: 5px; + padding-top: 5px; +} + +img { + border-radius: 4px; +} + +.roles { + color: rgb(3, 153, 3) !important; +} + +.me-auto { + color: blue !important; + animation: color-change 5s infinite !important; +} + +@keyframes color-change { + 0% { color: #9370DB; } + 50% { color: #00BFFF; } + 100% { color: #9370DB; } +} + +.active .nav-link { + color: rgb(3, 153, 3) !important; +} + +.text-muted { + color: rgb(0, 141, 158) !important +} + +dd > p:nth-child(1) > em { + color: #4169E1 !important; + margin-bottom: 4px !important +} + +dd > p:nth-child(1) { + margin-bottom: -5px !important; + margin-left: -3px !important; +} + +dd > p:nth-child(2) { + margin-left: -6px !important; +} + +.row > main { + max-width: 100%; +} + +@media only screen and (min-width: 640px) { + main + .col-md-3 { + margin-left: unset; + padding-left: 5rem; + max-width: 75%; + } +} + +h4.author,h4.date { + padding-top:0px; + margin-top:0px; +}