Update issue templates
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
new file mode 100644
index 0000000..a8affb2
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -0,0 +1,28 @@
+---
+name: Bug report
+about: Create a report to help us improve
+
+---
+
+**Describe the bug**
+A clear and concise description of what the bug is.
+
+**To Reproduce**
+Think about using `reprex` to generate an example in R.
+
+```
+# code to reproduce the bug.
+```
+
+If you need to attach the entire rmarkdown doc, try to use ```` to quote your entire doc.
+
+````
+---
+title: "A reproducible example in rmarkdown"
+output: html_document
+---
+
+```{r}
+library(kableExtra)
+```
+````