diff options
| -rw-r--r-- | pdf.go | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -80,7 +80,7 @@ func (p *Fpdf) AddPage(imgpath, hocrpath string) error {  				continue  			}  			p.fpdf.SetXY(pxToPt(coords[0]), pxToPt(coords[1])) -			p.fpdf.CellFormat(pxToPt(coords[2]), pxToPt(coords[3]), html.UnescapeString(w.Text), "", 0, "T", false, 0, "") +			p.fpdf.CellFormat(pxToPt(coords[2]), pxToPt(coords[3]), html.UnescapeString(w.Text) + " ", "", 0, "T", false, 0, "")  		}  	}  	return p.fpdf.Error() | 
