Skip to content

Commit

Permalink
pkgdown site
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewallenbruce committed Mar 22, 2024
1 parent 82b88d4 commit 82b087e
Show file tree
Hide file tree
Showing 3 changed files with 176 additions and 1 deletion.
2 changes: 1 addition & 1 deletion R/taxonomy.R
Original file line number Diff line number Diff line change
@@ -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_
Expand Down
87 changes: 87 additions & 0 deletions _pkgdown.yml
Original file line number Diff line number Diff line change
@@ -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
88 changes: 88 additions & 0 deletions vignettes/extra.css
Original file line number Diff line number Diff line change
@@ -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;
}

0 comments on commit 82b087e

Please sign in to comment.