I am adding documentation to project, but do not find any shortcut to add Block Comment. I have read Markup Formatting Reference guide but not able to find shortcut.
I am using Option ⌥ + Command ⌘ + / to add comment but it adding /// for every line.
/// Initializer
///
/// - Parameters:
/// - userId: User Id
/// - userName: User Name
/// - applicationVersion: Applicarion Version
init(_ userId: String, withUserName userName: String, withApplicationVersion applicationVersion: String)
I want to add Block Comment /** ....*/ as below:
/**
- parameters:
- cubes: The cubes available for allocation
- people: The people that require cubes
*/