-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
780fa7a
commit 8e64525
Showing
4 changed files
with
77 additions
and
1 deletion.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
--- | ||
title: "Donate" | ||
output: | ||
rmarkdown::html_vignette: | ||
includes: | ||
in_header: clipboard_script.html | ||
vignette: > | ||
%\VignetteIndexEntry{Donate} | ||
%\VignetteEngine{knitr::rmarkdown} | ||
%\VignetteEncoding{UTF-8} | ||
--- | ||
|
||
## Support my work | ||
|
||
If you find this package useful, please consider supporting my work with a cryptocurrency donation. | ||
|
||
### Bitcoin | ||
|
||
<div class="crypto-address"> | ||
<span id="bitcoin-address">bc1qgs4f6hhnzj8m2j05axgsf53k67kugps92qzr2k</span> | ||
<button onclick="copyToClipboard('bitcoin-address')">Copy</button> | ||
</div> | ||
|
||
```{r, echo=FALSE, out.width="50%", fig.align='center'} | ||
knitr::include_graphics("../man/figures/BITCOIN.png") | ||
``` | ||
|
||
### Monero | ||
|
||
<div class="crypto-address"> | ||
<span id="monero-address">41wSUfpnhVUW5GnTKCyBBwVuokhkjMeepAVkKT1qv3HDhcZhTSQx1UaTaibEukndQrCPLVMcRt1LVFpVSq3YrdRjENBtMkG</span> | ||
<button onclick="copyToClipboard('monero-address')">Copy</button> | ||
</div> | ||
|
||
```{r, echo=FALSE, out.width="50%", fig.align='center'} | ||
knitr::include_graphics("../man/figures/MONERO.png") | ||
``` | ||
|
||
<style> | ||
.crypto-address { | ||
display: flex; | ||
align-items: center; | ||
margin-bottom: 10px; | ||
} | ||
.crypto-address span { | ||
font-family: monospace; | ||
padding: 5px; | ||
border: 1px solid #ccc; | ||
border-radius: 3px; | ||
margin-right: 10px; | ||
} | ||
.crypto-address button { | ||
padding: 5px 10px; | ||
background-color: #f0f0f0; | ||
border: 1px solid #ccc; | ||
border-radius: 3px; | ||
cursor: pointer; | ||
} | ||
</style> |