Skip to content

Instantly share code, notes, and snippets.

@Rami-Majdoub
Last active August 12, 2024 02:02
Show Gist options
  • Save Rami-Majdoub/e057d2c30ed19da61ab9a8d4b03be99e to your computer and use it in GitHub Desktop.
Save Rami-Majdoub/e057d2c30ed19da61ab9a8d4b03be99e to your computer and use it in GitHub Desktop.
remove UNREGISTERED from StarUML
  • export as SVG (File > Export Diagram As > SVG... > Save)
  • open SVG file in web browser
  • open console and run
document.querySelectorAll("text").forEach(e => e.innerHTML = e.innerHTML === "UNREGISTERED"? "":e.innerHTML)
  • take screenshot
@TheNotoriousPhilipDev
Copy link

is there any to achieve that if I'm using ubuntu? if so, please let me know how to

@cp-prashanthrao
Copy link

Just open the SVG file in a text editor and replace the UNREGISTERED text with empty

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment