mirror of
https://github.com/rust-lang-cn/book-cn.git
synced 2025-01-23 23:50:25 +08:00
9 lines
139 B
Bash
Executable File
9 lines
139 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
xsltproc tools/docx-to-md.xsl tmp/word/document.xml | \
|
|
fold -w 80 -s | \
|
|
sed -e "s/ *$//" \
|
|
> nostarch/chapter02.md
|