Enable autolinks. Pass true to enable all autolink types (URL, WWW, email), or an object to enable individually.
property
markdown.Options.autolinks
autolinks?: boolean | { email: boolean; url: boolean; www: boolean }
// Enable all autolinks
{ autolinks: true }
// Enable only URL and email autolinks
{ autolinks: { url: true, email: true } }