--- multiconfig.py.orig	2005-12-06 23:11:26.000000000 +0000
+++ multiconfig.py	2005-12-29 13:31:32.849060000 +0000
@@ -231,6 +231,7 @@
     language_ignore_browser = False # ignore browser settings, use language_default
                                     # or user prefs
 
+    line_anchors = 1
     lupy_search = False # disabled until lupy is finished
 
     mail_login = None # or "user pwd" if you need to use SMTP AUTH
--- formatter\text_html.py.orig	2005-12-04 12:37:54.000000000 +0000
+++ formatter\text_html.py	2005-12-29 13:36:10.340206400 +0000
@@ -287,7 +287,10 @@
         return '<span id="%s" class="anchor"></span>' % (id, )
 
     def line_anchordef(self, lineno):
-        return self.anchordef("line-%d" % lineno)
+        if self.request.cfg.line_anchors:
+            return self.anchordef("line-%d" % lineno)
+        else:
+            return ''
 
     def anchorlink(self, on, name='', id=None):
         extra = ''
