From 3211fe1f19f8d2a9ea090c8232f65ddad379cd26 Mon Sep 17 00:00:00 2001 From: pcremades Date: Fri, 9 May 2025 15:02:38 -0300 Subject: [PATCH] [Feature] Add link to DXFs/SVGs files in documentation --- scripts/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/views.py b/scripts/views.py index bed05c8..4553d40 100755 --- a/scripts/views.py +++ b/scripts/views.py @@ -368,7 +368,7 @@ def views(target, do_assemblies = None): print("### CNC Routed parts", file = doc_file) keys = sorted(list(routed.keys())) for i, r in enumerate(keys): - print('%s %d x %s |' % ('\n|' if not (i % 3) else '', routed[r]["count"], r), file = doc_file, end = '') + print('%s %d x [%s](dxfs/%s) |' % ('\n|' if not (i % 3) else '', routed[r]["count"], r, r), file = doc_file, end = '') if (i % 3) == 2 or i == len(routed) - 1: n = (i % 3) + 1 print('\n|%s' % ('---|' * n), file = doc_file)