From 92c9b026fbfa8841c959ff116485e60d7c340dd9 Mon Sep 17 00:00:00 2001 From: mcc-us Date: Thu, 22 Aug 2024 09:29:04 -0400 Subject: [PATCH] small edits/mods --- README.md | 12 ++++ _pages/z-gitbook-help.md | 148 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 160 insertions(+) create mode 100644 _pages/z-gitbook-help.md diff --git a/README.md b/README.md index 155b82d..3d5d4ea 100644 --- a/README.md +++ b/README.md @@ -4,3 +4,15 @@ title: IRS EA Notes permalink: / --- + +[IRS EA Home](https://mcc-us.github.io/irs.ea/) + + +| :honeybee: Resources :honeybee: | +|:---------:| +|[Matt's Free Resources for EA Exam Preparation](https://mcc-us.github.io/irs.ea/2024-08-02-ea-exam-prep.html)| +|Website: [irs.gov/ tax-professionals / enrolled-agents](https://www.irs.gov/tax-professionals/enrolled-agents)    | +|[**940** fix]()     [**941** fix]()     [**GAAP** fix]()    | +|Extras| +|[Principles Of Accounting-L.Walther](https://www.principlesofaccounting.com/the-accounting-cycle/)    | +|A computer science portal, useful for writing html: GeeksforGeeks| \ No newline at end of file diff --git a/_pages/z-gitbook-help.md b/_pages/z-gitbook-help.md new file mode 100644 index 0000000..602b361 --- /dev/null +++ b/_pages/z-gitbook-help.md @@ -0,0 +1,148 @@ +--- +title: gitbook help +layout: post +--- + +This page is markdown help favorites. :blush: + +More information see: [Jekyll Git Book theme](https://github.com/sighingnow/jekyll-gitbook) + +### Scale images on page + +``` + +``` + +### Add non-breaking space + +` ` + + +### PDF Containers + +``` +
+ +
+``` + +### 4 Blocks + +>#### green tip +> +> green tip +{: .block-tip } + +``` +> #### green tip +> +> green tip +{: .block-tip } +``` + +``` +> #### yellow warning +> +> yellow warning +{: .block-warning } +``` + +``` +> #### red danger +> +> red danger +{: .block-danger } +``` + +| :warning: White box :warning: | +|:---------:| +| White box | + +``` +| :warning: White box :warning: | +|:---------:| +| White box | +``` + +### Emojis + +https://gist.github.com/rxaviers/7360908 + +https://github-emoji-picker.rickstaa.dev/ + +### Links + +``` +[Absolute link to a page](https://mcc-us.github.io/2020-02-28-sample-markdown/) +``` + +``` +[Relative link to a section inside a page](#local-urls) +``` + +### Bookmark Links on the Same Page + +If you want to link to a heading on the same page, first add an ID tag to the header like this: + +```## Headings with ID Tags {#someIdTag}``` + +Then reference it with a normal Markdown link: + +```[Some link](#someIdTag)``` + + +### Pictures + +``` +![lion](/bookkeeping/assets/img/lion_head-144x144.png) +``` + +Images can also be centered! + +``` +![lion](/bookkeeping/assets/img/lion_head-144x144.png){: .mx-auto.d-block :} +``` + +``` +|ImageTitle| +|:-:| +|![abc](/bookkeeping/assets/a.png)| +``` + +### Code chunks + +```javascript +var foo = function(x) { + return(x + 5); +} +foo(3) +``` + +### Tables + +``` +| nameA | nameB | nameC | +| :---: |:----- | :---- | +| A1 | B1 | C1 | +``` + +```markdown +
+|title1|title2|title3|title4|title5|title6|title7|title8| +|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:| +|1|2|3|4|5|6|7|8| +
+``` + +### Dictionary Markdown + +``` +
+
Term 1
+
Definition of term 1
+
Term 2
+
Definition of term 2a
+
Definition of term 2b
+
+```