From d8f5630f7cf6c3d30a8ca75575682a98602547d5 Mon Sep 17 00:00:00 2001 From: William Date: Thu, 31 Oct 2024 15:00:04 -0400 Subject: [PATCH] update link from imagej.nih.gov --- doc/11-Working-with-the-original-ImageJ.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/11-Working-with-the-original-ImageJ.ipynb b/doc/11-Working-with-the-original-ImageJ.ipynb index ed626881..ec33e46c 100644 --- a/doc/11-Working-with-the-original-ImageJ.ipynb +++ b/doc/11-Working-with-the-original-ImageJ.ipynb @@ -507,7 +507,7 @@ "The `ij.py.run_macro` function lets you run [ImageJ macros](https://imagej.net/scripting/macro) from Python.\n", "\n", "Before you get too excited, there are some things you should know:\n", - "* The macro language does not support the complete ImageJ API, only a set of [built-in functions](https://imagej.nih.gov/ij/developer/macro/functions.html), although there are [ways to work around this](https://imagej.net/scripting/macro#overcoming-limitations).\n", + "* The macro language does not support the complete ImageJ API, only a set of [built-in functions](https://imagej.net/ij/developer/macro/functions.html), although there are [ways to work around this](https://imagej.net/scripting/macro#overcoming-limitations).\n", "* Macros are executed by a custom interpreter that is buggier and less well tested than other script languages (Groovy, JRuby, Jython, etc.).\n", "* Macros are not intended to run concurrently, meaning you should only run one macro at a time.\n", "* Macros only support three data types: numbers, strings, and simple arrays. Images are passed via numerical IDs.\n",