forked from datalorax/slidex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DESCRIPTION
58 lines (58 loc) · 2.28 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
Package: slidex
Version: 1.1.0
Title: Convert Microsoft PowerPoint Slides to Quarto
Description: This package is designed to extract information from Microsoft
PowerPoint slides, and then put that information into an R Markdown document
with a {xaringan} <https://github.com/yihui/xaringan> YAML. If the
xaringan package is also installed, beautiful html slides can then be
produced by knitting the RMD. At present, the package exports one function,
`convert_pptx`, which converts a .pptx file to R Markdown. The package is
not intended to be all encompassing or provide perfect conversion. Rather,
it should get you about 90% of the way there for about 80% of use cases.
Given the idiosyncrasies of different slide show presentations, it is
expected that some manual editing of the resulting RMD will need to be
completed to get the HTML slides to look exactly as you want them, but most
of the hard work should be done for you. Importantly, the package maintains
and provides the proper code for any images that were embedded in the .pptx
slides, as well as links. Tables are also generally maintained, although
they may require some manual editing if complex spanner heads and merged
cells were used in the original table. Nested bulleted lists should also be
maintained.
Authors@R: c(
person("Daniel", "Anderson", email = "[email protected]", role = c("aut", "cre")),
person("Patrick", "Kennedy", email = "[email protected]", role = c("ctb"),
comment = c(ORCID = "0000-0002-5525-3983")),
person(given = "John",
family = "Muschelli",
email = "[email protected]",
role = c("ctb"),
comment = c(ORCID = "0000-0001-6469-1750")),
person(given = "Robert",
family = "McDonald",
email = "[email protected]",
role = c("ctb"),
comment = c(ORCID = "0000-0002-2390-8455"))
)
License: MIT + file LICENSE
Encoding: UTF-8
LazyData: true
ByteCompile: true
Depends:
R (>= 3.1)
Imports:
dplyr,
magrittr,
purrr,
rlang,
tibble,
tidyr,
xml2
RoxygenNote: 7.2.3
Suggests:
covr,
kableExtra,
knitr,
testthat,
xaringan
URL: https://github.com/baslat/slidex
BugReports: https://github.com/baslat/slidex/issues