# This file will convert a .txt file that has a tab-delimited set of # definitions into a dictionary file for the ReB. The input file must # must be formatted to contain lines of "word\tdefinition", where "\t" is # a literal tab character, and "definition" occupies one or more lines, # but does not contain any tabs. # # You use this option file like this: # # rbmake -l dict.opt -o output.rb input.txt # Make-Dictionary-Index: yes Text-Conversion: none Substitution-Rule-File: - ------------------ "*.txt": { s{^([^\t]+)\t} {

$1}mg; }