From 5da714bcc81cffe0723b210fa80232b21e3f8d7c Mon Sep 17 00:00:00 2001
From: Axel Kohlmeyer <akohlmey@gmail.com>
Date: Wed, 22 Aug 2018 21:33:40 -0400
Subject: [PATCH] fix another source of broken links inserted into processed
 files

---
 doc/utils/converters/lammpsdoc/lammps_filters.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/utils/converters/lammpsdoc/lammps_filters.py b/doc/utils/converters/lammpsdoc/lammps_filters.py
index 11460185db..7b1481ceb9 100644
--- a/doc/utils/converters/lammpsdoc/lammps_filters.py
+++ b/doc/utils/converters/lammpsdoc/lammps_filters.py
@@ -64,7 +64,7 @@ def filter_file_header_until_first_horizontal_line(content):
 
     common_links = "\n.. _lws: http://lammps.sandia.gov\n" \
                    ".. _ld: Manual.html\n" \
-                   ".. _lc: Section_commands.html#comm\n"
+                   ".. _lc: Commands_all.html\n"
 
     if first_hr >= 0:
         return content[first_hr+len(hr):].lstrip() + common_links
-- 
GitLab