You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After running init.sh with default values, running make to see the help text does not appear to format the \ns correctly. I see this in my terminal:
❯ make
\n ------------------------------------------------------------- \n * watch, build and serve the documentation: make run \n * only build: make html \n * only serve: make serve \n * clean built doc files: make clean-doc \n * clean full environment: make clean \n * check links: make linkcheck \n * check spelling: make spelling \n * check spelling (without building again): make spellcheck \n * check inclusive language: make woke \n * check accessibility: make pa11y \n * check style guide compliance: make vale \n * check style guide compliance on target: make vale TARGET=* \n * check metrics for documentation: make allmetrics \n * other possible targets: make <TAB twice> \n ------------------------------------------------------------- \n
It appears that using echo -e allows echo to escape newlines properly, but simply modifying the sp-files/Makefile to include this doesn't seem to fix the problem for me, as the generated Makefile is missing the modification. I'm not sure which file needs to be modified.
The text was updated successfully, but these errors were encountered:
After running
init.sh
with default values, runningmake
to see the help text does not appear to format the\n
s correctly. I see this in my terminal:It appears that using
echo -e
allowsecho
to escape newlines properly, but simply modifying thesp-files/Makefile
to include this doesn't seem to fix the problem for me, as the generated Makefile is missing the modification. I'm not sure which file needs to be modified.The text was updated successfully, but these errors were encountered: