)]}'
{
  "log": [
    {
      "commit": "84f10234b79583aa6cfc8bbcc66b5f9ebffa79cc",
      "tree": "b07907581f43c5365fa4b578387ca41dd622785d",
      "parents": [
        "19f6b53af874d1b5149ba8511d3fc34a388cd0f4"
      ],
      "author": {
        "name": "jokorn",
        "email": "jonatankornholt@outlook.com",
        "time": "Mon Nov 11 13:34:16 2019 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Nov 11 13:34:16 2019 +0100"
      },
      "message": "bypass base::format if encoding utf8\n\nWith Windows 10 and locale \u003d Danish_Denmark.1252, the base::format function in solve_enc messed up the encoding if the string was already encoded in UTF-8, e.g. character string \u003d \"\\u2265\""
    },
    {
      "commit": "19f6b53af874d1b5149ba8511d3fc34a388cd0f4",
      "tree": "87ba6f0561d81271da820c66c1bca30fa9a3d0c4",
      "parents": [
        "1cb595e7df6f255a137fec0aec684e3d7c425b7a"
      ],
      "author": {
        "name": "jokorn",
        "email": "jonatankornholt@outlook.com",
        "time": "Thu Nov 07 21:57:53 2019 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Nov 07 21:57:53 2019 +0100"
      },
      "message": "stringsAsFactors \u003d FALSE for the data frame input"
    },
    {
      "commit": "1cb595e7df6f255a137fec0aec684e3d7c425b7a",
      "tree": "946311b6607e37b856804b9b15259646e5fc9f89",
      "parents": [
        "a00ad668763ef04e7dd9d7bf34d2d4d057f18b57"
      ],
      "author": {
        "name": "jokorn",
        "email": "jonatankornholt@outlook.com",
        "time": "Thu Nov 07 21:26:54 2019 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Nov 07 21:26:54 2019 +0100"
      },
      "message": "parenthesis error"
    },
    {
      "commit": "a00ad668763ef04e7dd9d7bf34d2d4d057f18b57",
      "tree": "19bd84536bcc1a7c5f9d716289f572dedc6668df",
      "parents": [
        "69c8bd57db5fbfb11dc677bb20ba3a7a0ac449b6"
      ],
      "author": {
        "name": "jokorn",
        "email": "jonatankornholt@outlook.com",
        "time": "Thu Nov 07 21:11:19 2019 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Nov 07 21:11:19 2019 +0100"
      },
      "message": "Data frame input as alternative to named vector\n\nAllow a two column data frame as input instead of a named vector. There are issues with unicode characters in the names of named vectors and these issues are side stepped if the input is a data frame with a character vector with the header names and a numeric vector with the column spans."
    },
    {
      "commit": "69c8bd57db5fbfb11dc677bb20ba3a7a0ac449b6",
      "tree": "c6202506ba6b4c4ea51a6cf127185ce3752cb0d5",
      "parents": [
        "7e49c74670171de790ba81b3333ffd26912676f7"
      ],
      "author": {
        "name": "jokorn",
        "email": "jonatankornholt@outlook.com",
        "time": "Sat Jun 29 11:11:11 2019 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Jun 29 11:11:11 2019 +0200"
      },
      "message": "Update group_header_rows attribute with new position when adding multiple group_rows to HTML table\n\nThere is an issue when adding multiple group_rows to a kable HTML table. When adding the second group_rows statement the positions are wrong because the positions of the first group_header_rows are not updated after adding the new group_header_rows. This line should fix this.\r\n\r\nExample .Rmd file:\r\n\r\n---\r\noutput:\r\n  html_document: default\r\n---\r\n\r\n```{r include\u003dFALSE}\r\n\r\n# Load libraries\r\nlibrary(tidyverse)\r\nlibrary(kableExtra)\r\n\r\n# Create test data\r\n# Nested groups. \"a\" only contains \"1\" and \"2\",\r\n# \"b\" only contains \"3\" and \"4\", \"c\" only \"5\" and \"d\" only \"6\"\r\ntest_data \u003c- tribble(\r\n  ~var1, ~var2, ~var3,\r\n  \"a\",   \"1\",    \"x\",\r\n  \"b\",   \"4\",    \"y\",\r\n  \"b\",   \"3\",    \"x\",\r\n  \"a\",   \"2\",    \"z\",\r\n  \"c\",   \"5\",    \"y\",\r\n  \"d\",   \"6\",    \"x\",\r\n  \"d\",   \"6\",    \"z\",\r\n  \"a\",   \"2\",    \"y\",\r\n  \"d\",   \"7\",    \"b\",\r\n  \"d\",   \"7\",    \"b\")\r\n\r\n# Sort data on var1 and var2 so we\u0027re able to group rows based on these\r\ntest_data_sorted \u003c- test_data %\u003e% \r\n  arrange(var1, var2)\r\n```\r\n\r\n```{r kable_one_group}\r\n# Create kable table and group rows based on var1 first\r\nkable_one_group \u003c- test_data_sorted %\u003e% \r\n  kable() %\u003e% \r\n  kable_styling(full_width \u003d FALSE) %\u003e% \r\n  group_rows(index \u003d test_data_sorted$var1 %\u003e% auto_index(),\r\n             group_label \u003d test_data_sorted$var1)\r\n\r\n# This works fine\r\nkable_one_group\r\n```\r\n\r\n\r\n```{r kable_one_group_other_var}\r\n# Create kable table and group rows based on var2 second\r\nkable_one_group_other_var \u003c- test_data_sorted %\u003e% \r\n  kable() %\u003e% \r\n  kable_styling(full_width \u003d FALSE) %\u003e% \r\n  group_rows(index \u003d test_data_sorted$var2 %\u003e% auto_index(),\r\n             group_label \u003d test_data_sorted$var2)\r\n\r\n#This works fine\r\nkable_one_group_other_var\r\n```\r\n\r\n```{r kable_two_groups_both_vars}\r\n# Then add another group of rows based on var2 to this table\r\nkable_two_groups \u003c- kable_one_group %\u003e% \r\n  group_rows(index \u003d test_data_sorted$var2 %\u003e% auto_index(),\r\n             group_label \u003d test_data_sorted$var2 %\u003e% auto_index,\r\n             indent \u003d FALSE)\r\n\r\n#This doesn\u0027t work as intended\r\nkable_two_groups\r\n```"
    },
    {
      "commit": "7e49c74670171de790ba81b3333ffd26912676f7",
      "tree": "0d8cb7e43d0dd36cdf155e5488a049ff9b20ae63",
      "parents": [
        "092a81f94fc4c1a10b280197754a5490fb7dacc4",
        "e2ee69ad77738c8792057a879c9ef240743baa9c"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Wed May 22 12:49:14 2019 -0400"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed May 22 12:49:14 2019 -0400"
      },
      "message": "Merge pull request #386 from wibeasley/radix-to-distill\n\nsupport for \u0027distill\u0027 markdown articles"
    },
    {
      "commit": "e2ee69ad77738c8792057a879c9ef240743baa9c",
      "tree": "0d8cb7e43d0dd36cdf155e5488a049ff9b20ae63",
      "parents": [
        "b9fff91e908bb2573cbfa489de94bc56803a233c"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Wed May 22 12:47:32 2019 -0400"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed May 22 12:47:32 2019 -0400"
      },
      "message": "Add package name to bsTable autoload formats"
    },
    {
      "commit": "b9fff91e908bb2573cbfa489de94bc56803a233c",
      "tree": "6389b35ebb50dde0e75a5d31e195383c6c5e6bd7",
      "parents": [
        "092a81f94fc4c1a10b280197754a5490fb7dacc4"
      ],
      "author": {
        "name": "Will Beasley",
        "email": "wibeasley@hotmail.com",
        "time": "Wed May 22 11:10:09 2019 -0500"
      },
      "committer": {
        "name": "Will Beasley",
        "email": "wibeasley@hotmail.com",
        "time": "Wed May 22 11:10:09 2019 -0500"
      },
      "message": "support for \u0027distill\u0027 markdown articles\n"
    },
    {
      "commit": "092a81f94fc4c1a10b280197754a5490fb7dacc4",
      "tree": "611c9a73e5599a86a32771bf4d563c9e7554efd8",
      "parents": [
        "1776949bee687bdf1e166bf6965f9533234e776e",
        "f2652cd7097942af82b4e9bc940aa724dc0ead52"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Fri May 17 10:04:50 2019 -0400"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri May 17 10:04:50 2019 -0400"
      },
      "message": "Merge pull request #382 from salim-b/patch-1\n\nFix unordered list"
    },
    {
      "commit": "f2652cd7097942af82b4e9bc940aa724dc0ead52",
      "tree": "611c9a73e5599a86a32771bf4d563c9e7554efd8",
      "parents": [
        "1776949bee687bdf1e166bf6965f9533234e776e"
      ],
      "author": {
        "name": "Salim B",
        "email": "salim@posteo.de",
        "time": "Fri May 17 02:21:14 2019 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri May 17 02:21:14 2019 +0000"
      },
      "message": "Fix unordered list\n\nThere\u0027s a newline missing before the unordered list which breaks rendering, see \u003chttps://cran.r-project.org/web/packages/kableExtra/vignettes/awesome_table_in_html.html#celltext_specification\u003e"
    },
    {
      "commit": "1776949bee687bdf1e166bf6965f9533234e776e",
      "tree": "2f82bee98bef4e928c866db0f21c6614c38ae970",
      "parents": [
        "cd27ff036f23b1eefad9c4ed70475b14908103ce"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Fri May 03 23:44:24 2019 -0400"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Fri May 03 23:44:24 2019 -0400"
      },
      "message": "update doc\n"
    },
    {
      "commit": "cd27ff036f23b1eefad9c4ed70475b14908103ce",
      "tree": "bd810e18efbb2df03e43af0dbf16f61b43355186",
      "parents": [
        "5ded5f0f63a4efca8558de171ef2e4b0a9723d7b"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Apr 30 09:58:32 2019 -0400"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Apr 30 09:58:32 2019 -0400"
      },
      "message": "added one sentence to scale_down doc\n"
    },
    {
      "commit": "5ded5f0f63a4efca8558de171ef2e4b0a9723d7b",
      "tree": "4e68fb2ebb92df2ce2e3b57f7093b888961cb2a3",
      "parents": [
        "779569e6fc2873a69517401ceafecbe96f35243a",
        "8bc9622922ca6502f87855e9fcaa14bba5404918"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Mon Apr 29 13:22:27 2019 -0400"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Apr 29 13:22:27 2019 -0400"
      },
      "message": "Merge pull request #378 from dmurdoch/master\n\nAllow general column spec in LaTeX"
    },
    {
      "commit": "8bc9622922ca6502f87855e9fcaa14bba5404918",
      "tree": "4e68fb2ebb92df2ce2e3b57f7093b888961cb2a3",
      "parents": [
        "78f7beea141307100d563a934bf044877a52a1f1"
      ],
      "author": {
        "name": "Duncan Murdoch",
        "email": "murdoch.duncan@gmail.com",
        "time": "Mon Apr 29 12:46:39 2019 -0400"
      },
      "committer": {
        "name": "Duncan Murdoch",
        "email": "murdoch.duncan@gmail.com",
        "time": "Mon Apr 29 12:46:39 2019 -0400"
      },
      "message": "Allow general column spec in LaTeX\n"
    },
    {
      "commit": "78f7beea141307100d563a934bf044877a52a1f1",
      "tree": "4ff00108298df4009a4d868b9655ce4138618357",
      "parents": [
        "b045817e26f66f435c51c188594e2e651a529312",
        "779569e6fc2873a69517401ceafecbe96f35243a"
      ],
      "author": {
        "name": "Duncan Murdoch",
        "email": "murdoch.duncan@gmail.com",
        "time": "Mon Apr 29 11:12:08 2019 -0400"
      },
      "committer": {
        "name": "Duncan Murdoch",
        "email": "murdoch.duncan@gmail.com",
        "time": "Mon Apr 29 11:12:08 2019 -0400"
      },
      "message": "Merge branch \u0027master\u0027 of git://github.com/haozhu233/kableExtra\n\nUpdate to April 29, 2019\n"
    },
    {
      "commit": "779569e6fc2873a69517401ceafecbe96f35243a",
      "tree": "4ff00108298df4009a4d868b9655ce4138618357",
      "parents": [
        "3078d8b500108416dc29df4811b8c85c280a90e9"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Fri Apr 26 17:06:33 2019 -0400"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Fri Apr 26 17:06:33 2019 -0400"
      },
      "message": "Adding a latex_wrap_text option to pack_rows (#376)\n"
    },
    {
      "commit": "3078d8b500108416dc29df4811b8c85c280a90e9",
      "tree": "f3882c126f874a729887bede9085a4a3c02cfcba",
      "parents": [
        "f8207137507be2b8314628d7ddd93bf86ef2ae88"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Fri Apr 26 14:49:25 2019 -0400"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Fri Apr 26 14:49:25 2019 -0400"
      },
      "message": "#377 seems to be fixed now\n"
    },
    {
      "commit": "f8207137507be2b8314628d7ddd93bf86ef2ae88",
      "tree": "7c48a4bf9d31cee90959dba3fb83879d6c5470d9",
      "parents": [
        "57f362da31d5ece22440a01adb7e8d7adf1f5595"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Sat Apr 20 10:33:12 2019 -0400"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Sat Apr 20 10:33:12 2019 -0400"
      },
      "message": "Improved print method\n"
    },
    {
      "commit": "57f362da31d5ece22440a01adb7e8d7adf1f5595",
      "tree": "94e4dbc931e58813c19b61a10dcefe313e7773ee",
      "parents": [
        "8b2126e05729afa3691f38cc0bebe0d28fd13006",
        "1cba9272d2cfd8c2042b0fb34b816c7de8a203f5"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Apr 16 17:58:07 2019 -0400"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Apr 16 17:58:07 2019 -0400"
      },
      "message": "Merge branch \u0027master\u0027 of https://github.com/haozhu233/kableExtra\n"
    },
    {
      "commit": "8b2126e05729afa3691f38cc0bebe0d28fd13006",
      "tree": "984fa6175aafc03c3f02ebf7aa2cebd06f1b5fe5",
      "parents": [
        "e69a890301f8c13047f4bc3453f944de7211be5f"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Apr 16 17:58:01 2019 -0400"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Apr 16 17:58:01 2019 -0400"
      },
      "message": "#369\n"
    },
    {
      "commit": "1cba9272d2cfd8c2042b0fb34b816c7de8a203f5",
      "tree": "305a4bf1ce33d35de0fbadc46c768c64ccdf677d",
      "parents": [
        "e69a890301f8c13047f4bc3453f944de7211be5f",
        "e4b24f2cfdfc4c46536bc275d8278479cd3a5fca"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Fri Apr 05 01:51:08 2019 -0400"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Apr 05 01:51:08 2019 -0400"
      },
      "message": "Merge pull request #371 from JiaxiangBU/master\n\nAdd the examples to kable_as_image.R "
    },
    {
      "commit": "e4b24f2cfdfc4c46536bc275d8278479cd3a5fca",
      "tree": "305a4bf1ce33d35de0fbadc46c768c64ccdf677d",
      "parents": [
        "fcb8d45949df3ab2b8716a9d9cf6e30130a6673b"
      ],
      "author": {
        "name": "Jiaxiang Li",
        "email": "alex.lijiaxiang@foxmail.com",
        "time": "Fri Apr 05 13:38:11 2019 +0800"
      },
      "committer": {
        "name": "Jiaxiang Li",
        "email": "alex.lijiaxiang@foxmail.com",
        "time": "Fri Apr 05 13:38:11 2019 +0800"
      },
      "message": "move the examples into the functions save_kable and as_image\n"
    },
    {
      "commit": "fcb8d45949df3ab2b8716a9d9cf6e30130a6673b",
      "tree": "79a688ff26a19eceb07cf623b12b7fabd6bd8b1b",
      "parents": [
        "e69a890301f8c13047f4bc3453f944de7211be5f"
      ],
      "author": {
        "name": "Jiaxiang Li",
        "email": "alex.lijiaxiang@foxmail.com",
        "time": "Fri Apr 05 12:05:10 2019 +0800"
      },
      "committer": {
        "name": "Jiaxiang Li",
        "email": "alex.lijiaxiang@foxmail.com",
        "time": "Fri Apr 05 12:05:10 2019 +0800"
      },
      "message": "Add the examples to kable_as_image.R from https://haozhu233.github.io/kableExtra/save_kable_and_as_image.html, and update the help document.\n"
    },
    {
      "commit": "e69a890301f8c13047f4bc3453f944de7211be5f",
      "tree": "1a608c87babd07e8dc22fe89eba0516e7eea5f95",
      "parents": [
        "72917f9fdb86769ba2ae715fd8a84137df359ea7"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Mon Mar 18 11:11:30 2019 -0400"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Mon Mar 18 11:11:30 2019 -0400"
      },
      "message": "bump to dev\n"
    },
    {
      "commit": "72917f9fdb86769ba2ae715fd8a84137df359ea7",
      "tree": "f792adf60c774b419a6fd418bee1a2be7f64ff1b",
      "parents": [
        "50c72fc1b493d7cd066b06d078f08b3dbe4a7f4c"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Fri Mar 15 18:41:42 2019 -0400"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Fri Mar 15 18:41:42 2019 -0400"
      },
      "message": "Version 1.1 release\n"
    },
    {
      "commit": "50c72fc1b493d7cd066b06d078f08b3dbe4a7f4c",
      "tree": "78a46bbf5bb496621674474edd85c881e0274e72",
      "parents": [
        "67764aab877c1ea9be1ab580c3cf662034d297f1",
        "f3b6aa4bf1648979bbf48bb6f827755387eebed5"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Fri Mar 15 11:57:57 2019 -0400"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Fri Mar 15 11:57:57 2019 -0400"
      },
      "message": "Merge branch \u0027master\u0027 of https://github.com/haozhu233/kableExtra\n"
    },
    {
      "commit": "67764aab877c1ea9be1ab580c3cf662034d297f1",
      "tree": "1d0a0042f33dfae63bc92d63107b6efc170e5c4d",
      "parents": [
        "0d4ecc774d66c16327f021db6d22531819207c3b"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Fri Mar 15 11:57:50 2019 -0400"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Fri Mar 15 11:57:50 2019 -0400"
      },
      "message": "added docs for xtable\n"
    },
    {
      "commit": "f3b6aa4bf1648979bbf48bb6f827755387eebed5",
      "tree": "57ec5d98af701f6785f717f4b014664394fbe86e",
      "parents": [
        "0d4ecc774d66c16327f021db6d22531819207c3b",
        "17e1ae11c833f120d360f13debc56e94143ffbe4"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Mar 05 00:28:24 2019 -0500"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Mar 05 00:28:24 2019 -0500"
      },
      "message": "Merge pull request #352 from augustofm/patch-1\n\nPatch 1"
    },
    {
      "commit": "17e1ae11c833f120d360f13debc56e94143ffbe4",
      "tree": "57ec5d98af701f6785f717f4b014664394fbe86e",
      "parents": [
        "f17fa46c07919197731c13d40b00986c1c2ffeb6"
      ],
      "author": {
        "name": "Augusto Magalhães",
        "email": "augusto.fontenele@outlook.com",
        "time": "Tue Mar 05 13:00:05 2019 +0900"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Mar 05 13:00:05 2019 +0900"
      },
      "message": "Update footnote.R\n\nRemoved the extra line on the @param description for fixed_small_size."
    },
    {
      "commit": "f17fa46c07919197731c13d40b00986c1c2ffeb6",
      "tree": "dd8a7616e6ae144acbec7ff95b439e92fef147b0",
      "parents": [
        "0d4ecc774d66c16327f021db6d22531819207c3b"
      ],
      "author": {
        "name": "Augusto Magalhães",
        "email": "augusto.fontenele@outlook.com",
        "time": "Tue Mar 05 12:55:21 2019 +0900"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Mar 05 12:55:21 2019 +0900"
      },
      "message": "Update font size footnote.R\n\nReadd \"\\small\" for the footnote size, keeping both options through the @param fixed_small_size."
    },
    {
      "commit": "0d4ecc774d66c16327f021db6d22531819207c3b",
      "tree": "078c9565c12f0cc5089a49dedcfc7395f1a62e81",
      "parents": [
        "6429c9634da1aa65e4d15edddec9cfb52eb39195",
        "8e786ad55201134e0d5e0fbc7ed7ae44d3047292"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Mon Feb 18 08:18:53 2019 -0500"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Feb 18 08:18:53 2019 -0500"
      },
      "message": "Merge pull request #342 from ghaarsma/master\n\nFix deletion/unlink of lib directories and html files in save_kable"
    },
    {
      "commit": "8e786ad55201134e0d5e0fbc7ed7ae44d3047292",
      "tree": "078c9565c12f0cc5089a49dedcfc7395f1a62e81",
      "parents": [
        "6429c9634da1aa65e4d15edddec9cfb52eb39195"
      ],
      "author": {
        "name": "ghaarsma",
        "email": "ghaarsma@gmail.com",
        "time": "Sat Feb 16 21:28:01 2019 -0600"
      },
      "committer": {
        "name": "ghaarsma",
        "email": "ghaarsma@gmail.com",
        "time": "Sat Feb 16 21:28:01 2019 -0600"
      },
      "message": "Fix deletion/unlink of lib directories and html files\n\n+ It\u0027s using tempfile function to generate random html and lib names when needed, so that original files and lib directories are not effected when removing them.\n+ Also better check on the return argument of webshot.\n"
    },
    {
      "commit": "6429c9634da1aa65e4d15edddec9cfb52eb39195",
      "tree": "621cec8a95f4848e9313ad77a6a07f34d52e6e48",
      "parents": [
        "745e545d0c679013cda0d4b68a2df820287a9d52"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 22 11:56:47 2019 -0500"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 22 11:56:47 2019 -0500"
      },
      "message": "bump version to dev\n"
    },
    {
      "commit": "745e545d0c679013cda0d4b68a2df820287a9d52",
      "tree": "562b90f5c05e18a670e1b7f16d50fed9922f715a",
      "parents": [
        "3f65f187361c1eb0d32b74db925da4f8a4bcfbd2"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 22 02:59:05 2019 -0500"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 22 02:59:05 2019 -0500"
      },
      "message": "Add commented new fix_duplicated_row_latex\n"
    },
    {
      "commit": "3f65f187361c1eb0d32b74db925da4f8a4bcfbd2",
      "tree": "9fbd731f4b421be7df0c7e7edb5b1a31b383c85b",
      "parents": [
        "24bf30c9a6e9ebd5d7c05ab0f8116d673f1d6c2c"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 22 02:55:46 2019 -0500"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 22 02:55:46 2019 -0500"
      },
      "message": "increase version; add news and add tests\n"
    },
    {
      "commit": "24bf30c9a6e9ebd5d7c05ab0f8116d673f1d6c2c",
      "tree": "178657e6df11819f7e8025605a6352874482528a",
      "parents": [
        "46a42a1d82aad9bacb8c0e17a0e91e9c29104ed3"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 22 02:14:33 2019 -0500"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 22 02:14:33 2019 -0500"
      },
      "message": "standardize naming in magic_mirror\n"
    },
    {
      "commit": "46a42a1d82aad9bacb8c0e17a0e91e9c29104ed3",
      "tree": "4914fc7975771fee2a81ead3d10aa5ef1c13c930",
      "parents": [
        "5e1740df8766b6ee0a04810558f1b09da0635559"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 22 00:11:11 2019 -0500"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 22 00:11:11 2019 -0500"
      },
      "message": "address #310\n"
    },
    {
      "commit": "5e1740df8766b6ee0a04810558f1b09da0635559",
      "tree": "1391b2d0e1e51d1a1b353da592f7b7af7b9e5616",
      "parents": [
        "84102ed5db78661d3ef91b06fd2f8dbea3332de8"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Mon Jan 21 11:54:15 2019 -0500"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Mon Jan 21 11:54:15 2019 -0500"
      },
      "message": "put back print in print.R\n"
    },
    {
      "commit": "84102ed5db78661d3ef91b06fd2f8dbea3332de8",
      "tree": "650f24994f9ee3119364fce5570c7ff4105dc5cf",
      "parents": [
        "4dd985e6c8e71fae92aecf97973ea96b9f48dc43"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Wed Jan 16 00:06:25 2019 -0600"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Wed Jan 16 00:06:25 2019 -0600"
      },
      "message": "render xml table out\n"
    },
    {
      "commit": "4dd985e6c8e71fae92aecf97973ea96b9f48dc43",
      "tree": "480a88cb098eb1cb4f165c5f3d450581ae56e5a9",
      "parents": [
        "a171b454015c6a9bbb881c896a53110682aee0a7"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 15 17:15:28 2019 -0600"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 15 17:15:28 2019 -0600"
      },
      "message": "add xtable2kable to NEWS\n"
    },
    {
      "commit": "a171b454015c6a9bbb881c896a53110682aee0a7",
      "tree": "521549758deb549e88b23d9d38f83489f00673ed",
      "parents": [
        "e470714b20b028ecb8eb593a1a3f7ee1fdce672a"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 15 17:14:34 2019 -0600"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 15 17:14:34 2019 -0600"
      },
      "message": "Added an announcement about xtable2kable\n"
    },
    {
      "commit": "e470714b20b028ecb8eb593a1a3f7ee1fdce672a",
      "tree": "214c1f06fc8eb9910326475cb032617a7d2123b2",
      "parents": [
        "1c4917edafb8398a5068d9d733175ba0d3fc2799"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 15 17:01:45 2019 -0600"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 15 17:01:45 2019 -0600"
      },
      "message": "1.0 instead of 0.1......\n"
    },
    {
      "commit": "1c4917edafb8398a5068d9d733175ba0d3fc2799",
      "tree": "06302c84cbdf084932611f5981e99e70a1c588dc",
      "parents": [
        "62f5031f208abd4b9a170436d31546a4ee844d82"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 15 17:00:01 2019 -0600"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 15 17:00:01 2019 -0600"
      },
      "message": "Right before cran release\n"
    },
    {
      "commit": "62f5031f208abd4b9a170436d31546a4ee844d82",
      "tree": "96c78956040f5db931ac4323e18f9f63b2b3e8d8",
      "parents": [
        "2ed022fff5b32b5305a488fb2700fa2a40b33be0"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 15 15:19:29 2019 -0600"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 15 15:19:29 2019 -0600"
      },
      "message": "move doc to vignette\n"
    },
    {
      "commit": "2ed022fff5b32b5305a488fb2700fa2a40b33be0",
      "tree": "90aa66fcaf697d718a2c1919978ded98bc80611e",
      "parents": [
        "37975a3af16205161a0375ce2b4f3a8d6b2d3eed"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 15 15:01:19 2019 -0600"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 15 15:01:19 2019 -0600"
      },
      "message": "update index\n"
    },
    {
      "commit": "37975a3af16205161a0375ce2b4f3a8d6b2d3eed",
      "tree": "23bd06fde412a23247f751b74666934e1426841d",
      "parents": [
        "b361fb5c89a45698b520d6124af204d0fc33578d"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 15 14:59:34 2019 -0600"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 15 14:59:34 2019 -0600"
      },
      "message": "Export kable_xml functions.\n"
    },
    {
      "commit": "b361fb5c89a45698b520d6124af204d0fc33578d",
      "tree": "67fc9e099843aae069e1a120ee742716e6fcccd4",
      "parents": [
        "53e5961049e4547ebb6953b454acec0981b4f3c5"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 15 12:24:10 2019 -0600"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 15 12:24:10 2019 -0600"
      },
      "message": "add note to as_image\n"
    },
    {
      "commit": "53e5961049e4547ebb6953b454acec0981b4f3c5",
      "tree": "5c3150f73a82ff63095d1edc29f90acb0a83ebf0",
      "parents": [
        "7c39cba444c60c2892b26b723f4d68b418b57078"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 15 12:16:06 2019 -0600"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 15 12:16:06 2019 -0600"
      },
      "message": "before cran release\n"
    },
    {
      "commit": "7c39cba444c60c2892b26b723f4d68b418b57078",
      "tree": "8b5e8673fcd8a3112ba7bfdb87cb24dc73d80c37",
      "parents": [
        "b9e9a45ec6f082d36d97fc986aca6e522ffd33f7"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 08 15:29:33 2019 -0500"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 08 15:29:33 2019 -0500"
      },
      "message": "minor wording changes\n"
    },
    {
      "commit": "b9e9a45ec6f082d36d97fc986aca6e522ffd33f7",
      "tree": "af8cb6ae9568ac8f75b0dd59e523b7a80ca9c550",
      "parents": [
        "23ddaf3c84aec072a4073643ab5089f703103942",
        "744e73922ae4e93f2a13d5e5bb336504ff75fb61"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 08 13:42:31 2019 -0500"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 08 13:42:31 2019 -0500"
      },
      "message": "Merge branch \u0027master\u0027 of https://github.com/haozhu233/kableExtra\n"
    },
    {
      "commit": "23ddaf3c84aec072a4073643ab5089f703103942",
      "tree": "6c09b974eeff74575d5d62578f5c2c780de2c600",
      "parents": [
        "09d0126e0df36dcb0d6415b7fc3649e499eb55ba"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 08 13:42:26 2019 -0500"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 08 13:42:26 2019 -0500"
      },
      "message": "minor edits\n"
    },
    {
      "commit": "744e73922ae4e93f2a13d5e5bb336504ff75fb61",
      "tree": "d1d222e780453b3d0928a03bea36a61b430a9e20",
      "parents": [
        "09d0126e0df36dcb0d6415b7fc3649e499eb55ba",
        "f43dcf51c9d990d5f1026f3bda8302ea56972c9f"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Jan 08 10:57:24 2019 -0500"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Jan 08 10:57:24 2019 -0500"
      },
      "message": "Merge pull request #325 from martinschmelzer/master\n\nFixes for #323 and #324 (update add_header_above.R)"
    },
    {
      "commit": "f43dcf51c9d990d5f1026f3bda8302ea56972c9f",
      "tree": "1ba7da7fca9e8675d82ebe1e3c0f220b96d91ede",
      "parents": [
        "d851693ef2a9d59caf9cfd5ec9fdd534d03145d6"
      ],
      "author": {
        "name": "martinschmelzer",
        "email": "schmelzer.martin@gmx.de",
        "time": "Tue Jan 08 13:02:52 2019 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Jan 08 13:02:52 2019 +0100"
      },
      "message": "Update add_header_above.R"
    },
    {
      "commit": "09d0126e0df36dcb0d6415b7fc3649e499eb55ba",
      "tree": "cc8c03564cf6dec39195edb8786e4d5f017145bd",
      "parents": [
        "9b0515925261f26aca38d11f1e2eba3528fdbc43"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Mon Jan 07 22:06:22 2019 -0500"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Mon Jan 07 22:06:22 2019 -0500"
      },
      "message": "Fix #316\n"
    },
    {
      "commit": "9b0515925261f26aca38d11f1e2eba3528fdbc43",
      "tree": "cf53d2a3cea77b4926f2159d78143834073938b4",
      "parents": [
        "78e4386d49f38744eaeccd3c7a573c7db64f57f6"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Mon Jan 07 18:13:51 2019 -0500"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Mon Jan 07 18:13:51 2019 -0500"
      },
      "message": "Added table.envir\n"
    },
    {
      "commit": "78e4386d49f38744eaeccd3c7a573c7db64f57f6",
      "tree": "8971c07419f4e4e53da872c3684be0c7d0a20fc2",
      "parents": [
        "da886994b59985bf8ab77c1c5fa7845bb0c21a53"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Mon Jan 07 17:37:30 2019 -0500"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Mon Jan 07 17:37:30 2019 -0500"
      },
      "message": "Fix #235\n"
    },
    {
      "commit": "da886994b59985bf8ab77c1c5fa7845bb0c21a53",
      "tree": "cbef74c3248d54f6a09f442acd1ef909970f9831",
      "parents": [
        "8902df82e21e4a8455d76aa999f83980e147efec"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Mon Jan 07 17:29:44 2019 -0500"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Mon Jan 07 17:29:44 2019 -0500"
      },
      "message": "Fix #322\n"
    },
    {
      "commit": "8902df82e21e4a8455d76aa999f83980e147efec",
      "tree": "d9a10a36e91947f2c9cd7018fa46460c11b521b9",
      "parents": [
        "f1873a4f7a5648b38c6717960eb6378670831416"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Mon Jan 07 16:27:32 2019 -0500"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Mon Jan 07 16:27:32 2019 -0500"
      },
      "message": "Add save_kable and as_image vignette\n"
    },
    {
      "commit": "f1873a4f7a5648b38c6717960eb6378670831416",
      "tree": "17aacaccec84f4cd80aa0c95484b43d09d125956",
      "parents": [
        "685eaab206c7c44fc476b35be42a1411d5391bf6"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Mon Jan 07 15:57:01 2019 -0500"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Mon Jan 07 15:57:01 2019 -0500"
      },
      "message": "Add as_image; Add xcolor back in but without options\n"
    },
    {
      "commit": "685eaab206c7c44fc476b35be42a1411d5391bf6",
      "tree": "06bc2d3174ac204ba0a051d0447854d2b17e0c4a",
      "parents": [
        "905b31af8b3d502efe24e6d9658adecb9521e39f"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Mon Jan 07 12:18:26 2019 -0500"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Mon Jan 07 12:18:26 2019 -0500"
      },
      "message": "Fixed a critical bug\n"
    },
    {
      "commit": "905b31af8b3d502efe24e6d9658adecb9521e39f",
      "tree": "c1f2ee54a46821d27cc248471d2e212168c81aa9",
      "parents": [
        "d851693ef2a9d59caf9cfd5ec9fdd534d03145d6"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Mon Jan 07 11:00:05 2019 -0500"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Mon Jan 07 11:00:05 2019 -0500"
      },
      "message": "Fix #320 thanks @martinschmelzer\n"
    },
    {
      "commit": "d851693ef2a9d59caf9cfd5ec9fdd534d03145d6",
      "tree": "d60f6f3905f01b99f9fbb1de2e798dab137c0c14",
      "parents": [
        "270846bfac1db0ee7ecee6737aecf90ab34dd122"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Sun Jan 06 18:56:47 2019 -0500"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Sun Jan 06 18:56:47 2019 -0500"
      },
      "message": "finishing save_kable latex part\n"
    },
    {
      "commit": "270846bfac1db0ee7ecee6737aecf90ab34dd122",
      "tree": "99e2c9caf9ee49c9767bf25f3954fcbff4dce1c9",
      "parents": [
        "7039ecfffc9d2831e9235e5b909cbde571859840",
        "2fa52efc22dfed1fadcf94ce9d5031da61926578"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Sun Jan 06 17:52:26 2019 -0500"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Sun Jan 06 17:52:26 2019 -0500"
      },
      "message": "Merge, rebuild man pages\n\nMerge branch \u0027master\u0027 of https://github.com/haozhu233/kableExtra\n\n# Conflicts:\n#\tman/kable_styling.Rd\n"
    },
    {
      "commit": "7039ecfffc9d2831e9235e5b909cbde571859840",
      "tree": "eb46d63a60a21b00819c1737bf2e52e1e2be5bdc",
      "parents": [
        "99b88f0295c0b0468dd282069e007a8ca78186d0"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Sun Jan 06 17:51:21 2019 -0500"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Sun Jan 06 17:51:21 2019 -0500"
      },
      "message": "remove xcolor latex dependency\n"
    },
    {
      "commit": "b045817e26f66f435c51c188594e2e651a529312",
      "tree": "79efc11aa2a0c273953962194c78f34f5a32ce0d",
      "parents": [
        "99b88f0295c0b0468dd282069e007a8ca78186d0",
        "2fa52efc22dfed1fadcf94ce9d5031da61926578"
      ],
      "author": {
        "name": "dmurdoch",
        "email": "murdoch.duncan@gmail.com",
        "time": "Sun Jan 06 11:18:39 2019 -0500"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Jan 06 11:18:39 2019 -0500"
      },
      "message": "Merge pull request #1 from haozhu233/master\n\nbring up to date with master"
    },
    {
      "commit": "2fa52efc22dfed1fadcf94ce9d5031da61926578",
      "tree": "79efc11aa2a0c273953962194c78f34f5a32ce0d",
      "parents": [
        "45122dccaad5ce406ac129c109637d3969221458"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Sun Jan 06 11:14:43 2019 -0500"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Jan 06 11:14:43 2019 -0500"
      },
      "message": "Update DESCRIPTION\n\nAdd @dmurdoch to author\u0027s list"
    },
    {
      "commit": "45122dccaad5ce406ac129c109637d3969221458",
      "tree": "62ee8e9821ef1504080f23d954ca79973e4c24df",
      "parents": [
        "50f72068928a04485967cd6420acf2c430d40963",
        "6eb2950b4dc1bb64af6ea4f889598c6a5ebb6e13"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Sun Jan 06 11:12:57 2019 -0500"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Jan 06 11:12:57 2019 -0500"
      },
      "message": "Merge pull request #311 from dmurdoch/column_spec\n\nThe old align could be \"l\", matching the \"l\" in \"tabular\"."
    },
    {
      "commit": "50f72068928a04485967cd6420acf2c430d40963",
      "tree": "22be247a2eb8f7c7bff6c49e5f23738cb546b8fc",
      "parents": [
        "6560b789183285e6f6a2be69577f884713dd035c",
        "e0701f98f6d34bd14e3ac41086b433e927e198f7"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Sun Jan 06 11:12:38 2019 -0500"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Jan 06 11:12:38 2019 -0500"
      },
      "message": "Merge pull request #315 from DeependraD/patch-1\n\nTypo fixes"
    },
    {
      "commit": "6560b789183285e6f6a2be69577f884713dd035c",
      "tree": "93b57b2c1ba65da8e3ccf86136c99f825d42d4ca",
      "parents": [
        "99b88f0295c0b0468dd282069e007a8ca78186d0",
        "84658470b2eac164a2182d503471611fa0327684"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Sun Jan 06 11:12:11 2019 -0500"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Jan 06 11:12:11 2019 -0500"
      },
      "message": "Merge pull request #318 from dmurdoch/protect_latex\n\nProtect LaTeX math in the HTML format"
    },
    {
      "commit": "84658470b2eac164a2182d503471611fa0327684",
      "tree": "93b57b2c1ba65da8e3ccf86136c99f825d42d4ca",
      "parents": [
        "95c14376474e833c111cb7a0bb9a91e145646f30",
        "030b8f654bb1474c3539a39d2a3d4f602568f028"
      ],
      "author": {
        "name": "Duncan Murdoch",
        "email": "murdoch.duncan@gmail.com",
        "time": "Sun Jan 06 10:57:56 2019 -0500"
      },
      "committer": {
        "name": "Duncan Murdoch",
        "email": "murdoch.duncan@gmail.com",
        "time": "Sun Jan 06 10:57:56 2019 -0500"
      },
      "message": "Merge branch \u0027protect_latex\u0027 of https://github.com/dmurdoch/kableExtra into protect_latex\n\n# Conflicts:\n#\tR/kable_styling.R\n"
    },
    {
      "commit": "95c14376474e833c111cb7a0bb9a91e145646f30",
      "tree": "93b57b2c1ba65da8e3ccf86136c99f825d42d4ca",
      "parents": [
        "c3e1a3bcab9928a1b6e9ce145731c7f5d9d319ba"
      ],
      "author": {
        "name": "Duncan Murdoch",
        "email": "murdoch.duncan@gmail.com",
        "time": "Sun Jan 06 10:51:58 2019 -0500"
      },
      "committer": {
        "name": "Duncan Murdoch",
        "email": "murdoch.duncan@gmail.com",
        "time": "Sun Jan 06 10:55:29 2019 -0500"
      },
      "message": "Better regex and documentation\n"
    },
    {
      "commit": "030b8f654bb1474c3539a39d2a3d4f602568f028",
      "tree": "0c3aefacc4ae88637becec75aa1a5daab2047cde",
      "parents": [
        "c3e1a3bcab9928a1b6e9ce145731c7f5d9d319ba"
      ],
      "author": {
        "name": "Duncan Murdoch",
        "email": "murdoch.duncan@gmail.com",
        "time": "Sun Jan 06 10:51:58 2019 -0500"
      },
      "committer": {
        "name": "Duncan Murdoch",
        "email": "murdoch.duncan@gmail.com",
        "time": "Sun Jan 06 10:51:58 2019 -0500"
      },
      "message": "Better regex and documentation\n"
    },
    {
      "commit": "c3e1a3bcab9928a1b6e9ce145731c7f5d9d319ba",
      "tree": "e0b7789796170c0a1dfd2b922d36ec423c7c1404",
      "parents": [
        "911dca3a4f3a1e13cb033d399b40bd0238992b18"
      ],
      "author": {
        "name": "Duncan Murdoch",
        "email": "murdoch.duncan@gmail.com",
        "time": "Sat Jan 05 18:21:27 2019 -0500"
      },
      "committer": {
        "name": "Duncan Murdoch",
        "email": "murdoch.duncan@gmail.com",
        "time": "Sat Jan 05 18:21:27 2019 -0500"
      },
      "message": "Don\u0027t want to get an extra char ahead of the latex block\n"
    },
    {
      "commit": "911dca3a4f3a1e13cb033d399b40bd0238992b18",
      "tree": "35ae5d1cc3a76add036af5bf9a60cba05426a91e",
      "parents": [
        "99b88f0295c0b0468dd282069e007a8ca78186d0"
      ],
      "author": {
        "name": "Duncan Murdoch",
        "email": "murdoch.duncan@gmail.com",
        "time": "Sat Jan 05 16:39:32 2019 -0500"
      },
      "committer": {
        "name": "Duncan Murdoch",
        "email": "murdoch.duncan@gmail.com",
        "time": "Sat Jan 05 16:39:32 2019 -0500"
      },
      "message": "Protect LaTeX math in the HTML format:  see https://stackoverflow.com/q/54048265/2554330\n"
    },
    {
      "commit": "e0701f98f6d34bd14e3ac41086b433e927e198f7",
      "tree": "4bf98f05819ead4b04164c684f0b5d80a6b8c117",
      "parents": [
        "99b88f0295c0b0468dd282069e007a8ca78186d0"
      ],
      "author": {
        "name": "Deependra Dhakal",
        "email": "dean.ionized@gmail.com",
        "time": "Fri Dec 28 18:16:33 2018 +0545"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Dec 28 18:16:33 2018 +0545"
      },
      "message": "Typo fixes"
    },
    {
      "commit": "6eb2950b4dc1bb64af6ea4f889598c6a5ebb6e13",
      "tree": "234f534da5803a2333c4de4539c633d1554327ea",
      "parents": [
        "c106041d17aebc35a34ee842d38c8c8f5332f778"
      ],
      "author": {
        "name": "Duncan Murdoch",
        "email": "murdoch.duncan@gmail.com",
        "time": "Sun Dec 16 20:21:00 2018 -0500"
      },
      "committer": {
        "name": "Duncan Murdoch",
        "email": "murdoch.duncan@gmail.com",
        "time": "Sun Dec 16 20:21:00 2018 -0500"
      },
      "message": "Wrong kind of brackets!\n"
    },
    {
      "commit": "c106041d17aebc35a34ee842d38c8c8f5332f778",
      "tree": "9324abf1c1203e99610eff9ac31bf703e14f4d75",
      "parents": [
        "99b88f0295c0b0468dd282069e007a8ca78186d0"
      ],
      "author": {
        "name": "Duncan Murdoch",
        "email": "murdoch.duncan@gmail.com",
        "time": "Sun Dec 16 20:05:30 2018 -0500"
      },
      "committer": {
        "name": "Duncan Murdoch",
        "email": "murdoch.duncan@gmail.com",
        "time": "Sun Dec 16 20:05:30 2018 -0500"
      },
      "message": "The old align could be \"l\", matching the \"l\" in \"tabular\".\n"
    },
    {
      "commit": "99b88f0295c0b0468dd282069e007a8ca78186d0",
      "tree": "946064613666dcc7a29beb517ee8190ac40fe201",
      "parents": [
        "be1e05566fe85b70d7d4e4fcb1ccf49b13230856",
        "7ebfc55e1050f6e8af19da124210b56b335d7543"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Wed Dec 12 14:10:49 2018 -0500"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Wed Dec 12 14:10:49 2018 -0500"
      },
      "message": "Merge branch \u0027master\u0027 of https://github.com/haozhu233/kableExtra\n"
    },
    {
      "commit": "be1e05566fe85b70d7d4e4fcb1ccf49b13230856",
      "tree": "d5457dec55db8d6100b3da8f3959aa934ee45261",
      "parents": [
        "81eb9347ff53bdd572af5cd8f424252a7e7c2001"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Wed Dec 12 14:10:43 2018 -0500"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Wed Dec 12 14:10:43 2018 -0500"
      },
      "message": "fix a bug with the latest changes in kable_styling\n"
    },
    {
      "commit": "81eb9347ff53bdd572af5cd8f424252a7e7c2001",
      "tree": "8e01c5a44c03023b0e93524e433f51be0a03bb9e",
      "parents": [
        "7f8b6849f2b7bf2cd131529ffdeabd80a421c112"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Dec 11 10:38:52 2018 -0500"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Dec 11 10:38:52 2018 -0500"
      },
      "message": "move latex options in kable_styling to upper level\n"
    },
    {
      "commit": "7ebfc55e1050f6e8af19da124210b56b335d7543",
      "tree": "4e0fdf97e3f75c72755818dbbde9efa4901b27e9",
      "parents": [
        "ea0bee72e44ebea895adb89004bee106e99c33fe",
        "aa30498dd688ff1b9c3a5355e222c1ae1161f338"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Sat Dec 08 09:41:40 2018 +0800"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Dec 08 09:41:40 2018 +0800"
      },
      "message": "Merge pull request #306 from Jrmie/scroll_box_feature\n\nadd option to fix header in scroll box"
    },
    {
      "commit": "aa30498dd688ff1b9c3a5355e222c1ae1161f338",
      "tree": "4e0fdf97e3f75c72755818dbbde9efa4901b27e9",
      "parents": [
        "ea0bee72e44ebea895adb89004bee106e99c33fe"
      ],
      "author": {
        "name": "Jrmie",
        "email": "39067995+Jrmie@users.noreply.github.com",
        "time": "Sat Dec 08 00:14:16 2018 +0100"
      },
      "committer": {
        "name": "Jrmie",
        "email": "39067995+Jrmie@users.noreply.github.com",
        "time": "Sat Dec 08 00:14:16 2018 +0100"
      },
      "message": "add option to fix header in scroll box\n"
    },
    {
      "commit": "ea0bee72e44ebea895adb89004bee106e99c33fe",
      "tree": "d8298c8243c601fab59f90839eb70fb84e906dd7",
      "parents": [
        "7f8b6849f2b7bf2cd131529ffdeabd80a421c112",
        "aebd829c80f0a572b1095cc587295307238c67e3"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Wed Oct 31 11:43:59 2018 -0400"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Oct 31 11:43:59 2018 -0400"
      },
      "message": "Merge pull request #289 from jakob-r/master\n\nFix collape_rows for arbitrary columns"
    },
    {
      "commit": "aebd829c80f0a572b1095cc587295307238c67e3",
      "tree": "d8298c8243c601fab59f90839eb70fb84e906dd7",
      "parents": [
        "7f8b6849f2b7bf2cd131529ffdeabd80a421c112"
      ],
      "author": {
        "name": "Jakob Richter",
        "email": "code@jakob-r.de",
        "time": "Wed Oct 31 16:27:29 2018 +0100"
      },
      "committer": {
        "name": "Jakob Richter",
        "email": "code@jakob-r.de",
        "time": "Wed Oct 31 16:27:29 2018 +0100"
      },
      "message": "Fix collape_rows for arbitrary columns\n"
    },
    {
      "commit": "7f8b6849f2b7bf2cd131529ffdeabd80a421c112",
      "tree": "0caae0126ecf02a6e3603e6cfdd844a7a84b9fe9",
      "parents": [
        "149faedf582c0275a6e2545c3a0807b855a9f22f"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Oct 23 17:41:13 2018 -0400"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Oct 23 17:41:13 2018 -0400"
      },
      "message": "improved save_kable and added webshot support\n"
    },
    {
      "commit": "149faedf582c0275a6e2545c3a0807b855a9f22f",
      "tree": "b4831e16916cb11a425339813e67efbef5fa0f35",
      "parents": [
        "5250ab59e56a0ea46817a499746dd315ad41d189"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Oct 23 16:36:22 2018 -0400"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Oct 23 16:36:22 2018 -0400"
      },
      "message": "#271\n"
    },
    {
      "commit": "5250ab59e56a0ea46817a499746dd315ad41d189",
      "tree": "01fbfe84bd333b1c6bdc48885245ae5af0ca92c5",
      "parents": [
        "bdea945842ab4fde50072e490eb8eeb73a9eda4d"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Oct 23 15:25:14 2018 -0400"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Oct 23 15:25:14 2018 -0400"
      },
      "message": "update the bookdown guide book\n"
    },
    {
      "commit": "bdea945842ab4fde50072e490eb8eeb73a9eda4d",
      "tree": "4304c74111bc2325d99d7efd435b7c2bf6208c3a",
      "parents": [
        "3e0e2b108e8ee1f91e3d105f576288a6dc38c21f"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Oct 23 13:07:43 2018 -0400"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Oct 23 13:07:43 2018 -0400"
      },
      "message": "Fixed #280\n"
    },
    {
      "commit": "3e0e2b108e8ee1f91e3d105f576288a6dc38c21f",
      "tree": "38824654d476988c1065367c4c4b8b2afb8a1679",
      "parents": [
        "f64f475502f0673d14b177a1d0ba9c610a05f750"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Oct 23 11:21:29 2018 -0400"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Oct 23 11:21:29 2018 -0400"
      },
      "message": "Convert possible factor to character in linebreak\n"
    },
    {
      "commit": "f64f475502f0673d14b177a1d0ba9c610a05f750",
      "tree": "f6cce75aafd16a529d71e6e691b62a2891d9f71d",
      "parents": [
        "2742ffce5b74ee3d83854d6f628f2a61bc30fd4e"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Oct 23 10:35:16 2018 -0400"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Oct 23 10:35:16 2018 -0400"
      },
      "message": "Add include_empty\n"
    },
    {
      "commit": "2742ffce5b74ee3d83854d6f628f2a61bc30fd4e",
      "tree": "d9b9055150eb6cb0d1dfca9b71680c513061d758",
      "parents": [
        "6e6318829b4e6dab9c33f8a98892b887879066e3"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Wed Oct 17 11:23:44 2018 -0400"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Wed Oct 17 11:23:44 2018 -0400"
      },
      "message": "add indent option\n"
    },
    {
      "commit": "6e6318829b4e6dab9c33f8a98892b887879066e3",
      "tree": "0b40ae978453ede410f2ff6b5f67eb2dd505629b",
      "parents": [
        "dfeeaa179e27224556b89f0fa48c0a503f15b67f"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Oct 16 16:33:10 2018 -0400"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Oct 16 16:33:10 2018 -0400"
      },
      "message": "add a screenshot\n"
    },
    {
      "commit": "dfeeaa179e27224556b89f0fa48c0a503f15b67f",
      "tree": "f8ef41f0520fab25476d7222f1f07fe8ef13a4bb",
      "parents": [
        "6844920390726dc32e1a845bc4a60af7dc99b482"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Oct 16 16:23:22 2018 -0400"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Oct 16 16:23:22 2018 -0400"
      },
      "message": "Fix typo on home page\n"
    },
    {
      "commit": "6844920390726dc32e1a845bc4a60af7dc99b482",
      "tree": "2c4748345d3746676e45c0c49130b7813831d069",
      "parents": [
        "b8098059c0f8c80a2ddb6a1c32481d2380886943"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Oct 16 16:01:19 2018 -0400"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Tue Oct 16 16:01:19 2018 -0400"
      },
      "message": "adding links to using kableExtra in bookdown \u0026 radix\n"
    },
    {
      "commit": "b8098059c0f8c80a2ddb6a1c32481d2380886943",
      "tree": "6b25e5a24aa8abd25328980f4d542af313635fd6",
      "parents": [
        "c859dba9c7ed7edbd14394ee27bb6f16a90c99c8"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Mon Oct 08 16:57:43 2018 -0400"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Mon Oct 08 16:57:43 2018 -0400"
      },
      "message": "update bookdowm doc\n"
    },
    {
      "commit": "c859dba9c7ed7edbd14394ee27bb6f16a90c99c8",
      "tree": "ff605df80dbd520b8f9b1d03be20d793da60c16a",
      "parents": [
        "0c4c385d249579c10b349af19e5b608ec34d6993"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Wed Oct 03 18:05:55 2018 -0400"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Wed Oct 03 18:05:55 2018 -0400"
      },
      "message": "minor changes\n"
    },
    {
      "commit": "0c4c385d249579c10b349af19e5b608ec34d6993",
      "tree": "16ee0c5fc3ce28e4b9936d798102f4f09811e112",
      "parents": [
        "ce15763d71732310f939a2180e6d02433dee1a2c"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Wed Oct 03 18:01:18 2018 -0400"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Wed Oct 03 18:01:18 2018 -0400"
      },
      "message": "move bookdown to a different location\n"
    },
    {
      "commit": "ce15763d71732310f939a2180e6d02433dee1a2c",
      "tree": "a840fab1f585cd17f3be8715942a8ce96be3f984",
      "parents": [
        "c145088eb8678a57130ee709f82f58cbc1ce9cd5",
        "192e6402a16c4bb519dce6527db760424c43307d"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Wed Oct 03 17:56:33 2018 -0400"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Wed Oct 03 17:56:33 2018 -0400"
      },
      "message": "Merge branch \u0027master\u0027 of https://github.com/haozhu233/kableExtra\n"
    },
    {
      "commit": "c145088eb8678a57130ee709f82f58cbc1ce9cd5",
      "tree": "2040c08e8bb834a6da0681b57e924382bcc8a334",
      "parents": [
        "b548aace3bc341ca7084fc40b8b18eb4233129ae"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Wed Oct 03 17:56:26 2018 -0400"
      },
      "committer": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Wed Oct 03 17:56:26 2018 -0400"
      },
      "message": "add bookdown example\n"
    },
    {
      "commit": "192e6402a16c4bb519dce6527db760424c43307d",
      "tree": "f6b361d9fd34c291ef441fa500680e7e40d30f50",
      "parents": [
        "55c1007c3b843557e512cf6da9cb3391800ee09d",
        "a905e5270a633fb10438e90621854581ae99fe20"
      ],
      "author": {
        "name": "Hao Zhu",
        "email": "haozhu233@gmail.com",
        "time": "Wed Sep 19 09:53:44 2018 -0400"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Sep 19 09:53:44 2018 -0400"
      },
      "message": "Merge pull request #270 from gfiumara/kePrintTempFix\n\nWorkaround to not execute undefined functions."
    }
  ],
  "next": "a905e5270a633fb10438e90621854581ae99fe20"
}
