Remove user tag in notes when copying a note

Remove user tag in notes when copying a note

I am copying the notes from a custom module, to a main account in zoho crm.

When I copy the notes the tags are coming too. is there a way to remove it or put the name of (user/group) without tagging it.


Deluge code
RelNotes = zoho.crm.getRelatedRecords("Notes",'Work_orders',recID);
countVal = 0;
for each  ele in RelNotes
{
    countVal = countVal + 1;
    info ele;
    notemap = Map();
    notemap.put("Parent_Id",newId);
    notemap.put("$se_module",'Accounts');
    onwner_note = ele.get('Owner').get('name');
    onwner_note = onwner_note + ": OT ";
    //info onwner_note;
    note_content = ele.get("Note_Content");
    new_format = onwner_note + " \n\n" + note_content;
    notemap.put("Note_Title",ifnull(ele.get("Note_Title")," "));
    notemap.put("Note_Content",ifnull(ele.get("Note_Content")," "));
    notecreate = zoho.crm.createRecord("Notes",notemap);
   
    break;
}