Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

자동 링크삽입은 링크 판단되는 텍스트 입력 후 Space나 Enter 입력시 자동으로 링크가 삽입되는 기능입니다Automatic hyperlink insertion is the feature that inserts the relevant hyperlink into the text deemed to be a potential hyperlink when Space or Enter key is pressed after the text is entered.

Info
title예시

http://, https://, www. + TEXT + 최상위 도메인Toplevel Domain( .com, .co.kr ... )


By setting 'editor.autoLink' 값을 false로 설정하여 자동으로 링크가 삽입 되지 않도록 설정이 가능합니다. (기본값 true)to false, you may disable the feature (default - true).

Code Block
languagejs
themeEmacs
const synapEditorConfig = {
	//...
	/**
	 * 에디터 자동링크 사용 여부를 설정합니다 Determines whether the automatic hyperlink insertion feature is used.
	 */
	'editor.autoLink': true,
	//...
};

...