Merge latex and make_html2text into textproc

This commit is contained in:
Matteo Cypriani 2017-09-22 23:41:26 -04:00
부모 934fdcc3e9
커밋 cf6c8d2c63
7개의 변경된 파일29개의 추가작업 그리고 20개의 파일을 삭제

파일 보기

@ -1 +1 @@
../latex/latexd.sh
../textproc/latexd.sh

파일 보기

@ -1 +1 @@
../make_html2text/make_html2text.sh
../textproc/make_html2text.sh

파일 보기

@ -1,9 +0,0 @@
latexd.sh watches a file and calls make when it is changed. This is
useful to automatically compile a LaTeX document when saved.
To detect a change, a MD5 sum of the file is computed.
This script works well (at least) on GNU/Linux and FreeBSD.
Limitations :
- Handles only a single file.
- The delay between two checks is not configurable.

파일 보기

@ -1,9 +0,0 @@
make_html2text.sh converts all HTML (.html and .htm) files in the
current directory into text files (.txt). For each HTML file, it
verifies that the text file does not exists, or is older than the
corresponding HTML file; if the text file is more recent, nothing is
done.
To use this script, you will have to install the program html2text.
The option -nobs is used to avoid output of formatting sequences (bold,
italic, etc.).

27
textproc/README.md Normal file
파일 보기

@ -0,0 +1,27 @@
latexd.sh
=========
`latexd.sh` is a quick and dirty script that watches a file and calls `make`
whenever a change is detected. This is useful to automatically compile a LaTeX
document when saved, but can actually be used in any case where you have to
call `make` regularly. To detect a change, a MD5 sum of the file is computed.
This script works well (at least) on GNU/Linux and FreeBSD.
Limitations :
- Handles only a single file.
- The delay between two checks is not configurable.
make_html2text.sh
=================
`make_html2text.sh` converts all HTML (`.html` and `.htm`) files in the current
directory into text files (.txt). For each HTML file, it verifies that the text
file does not exists, or is older than the corresponding HTML file; if the text
file is more recent, nothing is done.
To use this script, you will have to install the program `html2text`. The
option `-nobs` is used to avoid output of formatting sequences (bold, italic,
etc.).