Difference between revisions of "Ministers performing marriages"

From Wayne County, Ohio Online Resource Center
Jump to navigation Jump to search
m ('Neal -> O'Neal)
Line 1: Line 1:
{| class="wikitable" style="width:275px; float:right; margin-left:20px; margin-bottom:20px"
+
For my own reference, sed one-liners to help with the Genealogy Wikification Project:
|+ style="font-weight:bold" | Townships of Wayne County, Ohio
+
==Tables==
|-
+
Here we identify and wikify surnames located in the first column of a wikitext table:
| style="padding-bottom:20px;padding-top:20px" colspan=2 | [[File:Map_of_Wayne_County_Ohio_With_Municipal_and_Township_Labels.PNG|250px|center]]
+
<pre>sed -i 's/\([^A-Z]*\)\([^,]*\),/\1[[\2 (surname)|]],/' tmp.txt</pre>
|-
 
| style="font-weight:bold" | Township name: || Plain
 
|-
 
| style="font-weight:bold" | Year organized: ||  1817
 
|-
 
| style="font-weight:bold" | Range/township: ||  R14, T19 & R15, T21
 
|}
 
  
Plain Township is one of sixteen current townships of [[Wayne County, Ohio]].
+
Turn 4th column to wiki link:
==Historical information==
+
<pre>sed -i 's/\(||.*||.*||.*||[^A-Za-z]*\)\(.*\)/\1[[\2]]/' tmp.txt</pre>
Plain Township contains the northern section (R14, T19) of historical [[Springfield Township]].
 
===Wedding officials===
 
The following [[Ministers performing marriages|ministers]] are recorded as having officiated weddings in Plain Township.
 
{| class="wikitable sortable"
 
!| Minister || Date || Other townships || Denomination
 
|-
 
|| [[Anderson (surname)|Anderson]], A. E.  || 1870 || . || [[Baptist]]
 
|-
 
|| [[Buell (surname)|Buell]], A. J.  || 1840 || . || [[Baptist]]
 
|-
 
|| [[Burke (surname)|Burke]], John  || 1840 || . || [[Baptist]]
 
|-
 
|| [[Burton (surname)|Burton]], N. S.  || 1864 || . || [[Baptist]]
 
|-
 
|| [[Crandall (surname)|Crandall]], Nelson  || .  || . || [[Baptist]]
 
|-
 
|| [[Dillman (surname)|Dillman]], George  || 1870 ||  [[Wooster, Ohio|Wooster]] || [[Lutheran]]
 
|-
 
|| [[Excell (surname)|Excell]], J. J.  || 1850 || . || [[Reformed]]
 
|-
 
|| [[Felger (surname)|Felger]], Joseph  || 1876 || . || [[Evangelical]]
 
|-
 
|| [[Foglesong (surname)|Foglesong]], M. P.  || 1873 || . || [[Lutheran]]
 
|-
 
|| [[Fry (surname)|Fry]], Jacob  || 1850 || . || [[Lutheran]]
 
|-
 
|| [[Guinther (surname)|Guinther]], C. C. || 1840 || . || [[Lutheran]]
 
|-
 
|| [[Helwig (surname)|Helwig]], Adam  || 1861 || . || [[Lutheran]]
 
|-
 
|| [[Himes (surname)|Himes]], Jesse  || 1850 || . || [[Reformed]]
 
|-
 
|| [[Jones (surname)|Jones]], Harrison  || 1856 || . || [[Disciples]]
 
|-
 
|| [[Keiffer (surname)|Keiffer]], S. P.  || 1850 || . || [[Lutheran]]
 
|-
 
|| [[Kuhn (surname)|Kuhn]], Andrew  || 1840 || [[East Union Township|East Union]] || [[Lutheran]]
 
|-
 
|| [[Leiter (surname)|Leiter]], George  || 1840 || [[Wooster Township|Wooster]]|| [[Lutheran]]
 
|-
 
|| [[Martens (surname)|Martens]], D.  || 1860 || [[Wooster Township|Wooster]]|| [[Lutheran]]
 
|-
 
|| [[Miller (surname)|Miller]], S. W.  || 1868 || [[Wooster, Ohio|Wooster]] || [[Presbyterian]]
 
|-
 
|| [[Penny (surname)|Penny]], T. J.  || 1850 || [[Wooster Township|Wooster]]|| [[Baptist]]
 
|-
 
|| [[Porter (surname)|Porter]], James K.  || 1840 || . || [[Baptist]]
 
|-
 
|| [[Samis (surname)|Samis]], James  || 1878 || . || [[Baptist]]
 
|-
 
|| [[Schlosser (surname)|Schlosser]], Jesse  || 1840 || . || [[Reformed]]
 
|-
 
|| [[Shaffer (surname)|Shaffer]], George W. || 1840 || . || [[Lutheran]]
 
|-
 
|| [[Smith (surname)|Smith]], A. M.  || 1850 || . || [[Lutheran]]
 
|-
 
|| [[Smith (surname)|Smith]], D. W.  || 1873 || . || [[Lutheran]]
 
|-
 
|| [[Spafford (surname)|Spafford]], Christian  || 1850 || . || [[Methodist]]
 
|-
 
|| [[Sparr (surname)|Sparr]], W. M.  || 1863 || . || [[Lutheran]]
 
|-
 
|| [[Starr (surname)|Starr]], John S.  || 1840 || . || [[Methodist]]
 
|-
 
|| [[Stump (surname)|Stump]], Adam  || 1870 || . || [[Reformed]]
 
|-
 
|| [[Taylor (surname)|Taylor]], G. W.  || 1850 || . || [[Baptist]]
 
|}
 
  
[[Category:Townships of Wayne County, Ohio]]
+
Wikification of minister tables:
 +
<pre>sed -i 's/\([^A-Z]*\)\([^,]*\)\(,[^|]*||[^|]*||[^|]*||[^A-Z]\)\([A-Za-z]*\)/\1[[\2 (surname)|]]\3[[\4]]/'</pre>

Revision as of 11:42, 28 February 2014

For my own reference, sed one-liners to help with the Genealogy Wikification Project:

Tables

Here we identify and wikify surnames located in the first column of a wikitext table:

sed -i 's/\([^A-Z]*\)\([^,]*\),/\1[[\2 (surname)|]],/' tmp.txt

Turn 4th column to wiki link:

sed -i 's/\(||.*||.*||.*||[^A-Za-z]*\)\(.*\)/\1[[\2]]/' tmp.txt

Wikification of minister tables:

sed -i 's/\([^A-Z]*\)\([^,]*\)\(,[^|]*||[^|]*||[^|]*||[^A-Z]\)\([A-Za-z]*\)/\1[[\2 (surname)|]]\3[[\4]]/'