我有一个使用GitBook的项目:https://github.com/akauppi/plantuml-book
它从PlantUML源生成图像。由于某些原因,这些图像不会被复制到GitBook的ab <- c(rbind(my_list, my_list2, my_list3))
# head(ab,3)
# [[1]]
# [1] 1 2 3 4 5 6 7 8 9 10
#
# [[2]]
# [1] 31 32 33 34 35 36 37 38 39 40
#
# [[3]]
# [1] "a" "a" "a" "a" "a" "a" "a" "a" "a" "a"
文件夹中,因此也不会放入书中。
预期:
GitBook会注意到图像引用,例如
_book
..并将此类图像文件复制到正确的位置(在本例中为_book / chapter1 / hello.svg)。
实际:
![](./hello.svg)
那里没有图像。 :(
注意:由于该项目似乎已经死了(link),因此我没有将它作为GitBook问题。
答案 0 :(得分:0)
问题是我的.gitignore
包含了生成的* .svg和* .png文件,而GitBook会自动忽略.gitignore
中的所有内容。
解决方案:.bookignore
中的these lines:
# Bring in the generated files (having them in .gitignore would otherwise leave them out)
!*.svg
!*.png