Skip to content

wjcml/JavaAscDoc

Repository files navigation

AsciiDoc文档

使用 asciidoc 做笔记,将学习的知识进行归纳和总结。

在线文档: Java工程师之路

环境准备(ArchLinux)

Note
以下操作均为 ArchLinux 系统下,若为其他系统请根据系统的不同,修改操作方式

1、安装ruby

pacman -Ss ruby

pacman -S ruby

2、安装bundle

pacman -Ss bundler

pacman -S ruby-bundler

3、安装相关依赖

[wjc@wjcarch EngineerRoad]$ bundle config set path 'vendor/bundle'

[wjc@wjcarch EngineerRoad]$ bundle install

4、生成文档

生成html格式
sh build.sh
生成pdf格式
sh build_pdf.sh

使用 asciidoctorasciidoctor-pdf 项目生成文档。

环境准备(Windows10)

在windows环境下,有两种方式可以生成文档

Note
以下操作均为 Windows10 系统下,若为其他系统请根据系统的不同,修改操作方式

方式一:

1、安装ruby

2、安装bundle

C:\Users\w> gem install bundler

3、安装相关依赖

C:\Users\w\Desktop\AsciiDocBase> bundle config set path 'vendor/bundle'

C:\Users\w\Desktop\AsciiDocBase> bundle install

4、生成文档

生成html格式
# del .\AsciiDoc文档.html
C:\Users\w\Desktop\AsciiDocBase> del 文件名(先前生成的文件)

C:\Users\w\Desktop\AsciiDocBase> bundle exec rake book:build_html
生成pdf格式
# del .\AsciiDoc文档.pdf
C:\Users\w\Desktop\AsciiDocBase> del 文件名(先前生成的文件)

C:\Users\w\Desktop\AsciiDocBase> bundle exec rake book:build_pdf

方式二:

1、安装ruby

2、安装bundle

C:\Users\w> gem install asciidoctor

3、生成文档

生成html格式
# del .\AsciiDoc文档.html
C:\Users\w\Desktop\AsciiDocBase> del 文件名(先前生成的文件)

C:\Users\w\Desktop\AsciiDocBase> asciidoctor seia.asc -o "AsciiDoc文档.html"

About

关于本人在java学习方面的笔记

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published