Convert TIP alerts into NOTE

In &5020 (closed), we decided to use only two alerts (note, warning), and eliminate any bold text coming after the icon.

This issue is about:

  1. Getting rid of the bold text **Tip:**

    for i in `grep -r "TIP: \*\*Tip:\*\*" doc | uniq | cut -d':' -f1`; do sed -i 's/TIP: \*\*Tip:\ *\*/TIP:/' $i; done
  2. Converting TIP alerts into NOTEs

    for i in `grep -r "TIP:" doc | uniq | cut -d':' -f1`; do sed -i 's/TIP:/NOTE:/' $i; done

The above steps will need to be repeated for all 4 products:

Edited by Achilleas Pipinellis