Converting set of names into internal links

@mikedoel You already have good options here. But just in case, I figured I’d add that if you list the names vertically, you could use a method similar to what I described here Prefix plugin - #3 by I-d-as. In order to add the ]] at the end of each name you could use VSCode to search with regex enabled for \n- \[x\] replacing it with ]] followed by an actual new line and - [x] . This can be accomplished by typing ]] then an new line and typing - [x] then selecting, copying and pasting the text into the replace field. After running that, you can simply use the method described in link to replace - [x] with either [[ or - [[ depending on whether you want the name links in a bullet list or not.

This technique is helpful in cases where the list is very long and using the multiple cursor method described by @Dor is perhaps taking too long. But, honestly, that would have to be a pretty big meeting to warrant this. Regardless, this can be helpful in other scenarios. Good luck.

Thanks.