From 9b6b7f4e784dd67fac27ae8fd4aea38136afa1c5 Mon Sep 17 00:00:00 2001 From: Kurt Date: Sat, 5 Oct 2019 21:09:23 -0400 Subject: Reference examples files in comment for RegisterAlias() --- fpdf.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'fpdf.go') diff --git a/fpdf.go b/fpdf.go index 6bc4aa3..cc47d16 100644 --- a/fpdf.go +++ b/fpdf.go @@ -3779,8 +3779,9 @@ func (f *Fpdf) SetJavascript(script string) { } // RegisterAlias adds an (alias, replacement) pair to the document so we can -// replace all occurrences of that alias after writing but before the -// document is closed. +// replace all occurrences of that alias after writing but before the document +// is closed. Functions ExampleFpdf_RegisterAlias() and +// ExampleFpdf_RegisterAlias_utf8() in fpdf_test.go demonstrate this method. func (f *Fpdf) RegisterAlias(alias, replacement string) { // Note: map[string]string assignments embed literal escape ("\00") sequences // into utf16 key and value strings. Consequently, subsequent search/replace -- cgit v1.2.1-24-ge1ad