aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/doc/developer/documentation.rst
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/doc/developer/documentation.rst')
-rw-r--r--sources/pyside6/doc/developer/documentation.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/pyside6/doc/developer/documentation.rst b/sources/pyside6/doc/developer/documentation.rst
index f768798fa..53e912918 100644
--- a/sources/pyside6/doc/developer/documentation.rst
+++ b/sources/pyside6/doc/developer/documentation.rst
@@ -53,12 +53,12 @@ Pages of examples that exist in Python should be removed.
for F in *.webxml
do
- echo "$F" | egrep '(-index)|(-module)|(-qmlmodule)\.webxml$' > /dev/null
+ echo "$F" | egrep '(-index|example|cmake|private-module|-changes-qt6|-module.web|-qmlmodule.web)' > /dev/null
if [ $? -ne 0 ]
then
if fgrep '<para>' "$F" > /dev/null # Exclude reference only
then
- egrep "(<class )|(<namespace )" $F > /dev/null || echo $F
+ egrep "(<namespace|<class|<struct|<group|<union)" $F > /dev/null || echo $F
fi
fi
done