I have a set of commands for producing various kinds of specific list-items, such as
\newcommand{\staritem}{\item[$\star$]} % not really, but you get the gist
All the ones I currently have can be used in the same way as \item, that is, just specify the item type at the start of the paragraph, and then write text as normal.
Now, I want to create a \bolditem command, that produces an \item and wraps the text in \textbf{...}. However, I'd like to make it available with the same syntax (so the users don't have to wrap the entire item text in braces).
Is this possible? How?