1. color Script 사용하기

https://colorscripter.com/

 

Color Scripter

Simple & Flexible Syntax HighLighter

colorscripter.com

2. 위 사이트에 코드를 복붙하면 거의 알아서 언어를 감지한다.

3. 오른쪽 하단에 있는 HTML로 복사 클릭해서 ctrl+c복사

4. 글쓰기 사이트에서 html보기로 들어가서 복사한 것 붙여넣기 끝~

 

아래는 예시

1
2
3
4
5
6
def test(**kwargs):
    print(type(kwargs))
    for k, v in kwargs.items():
        print(k, v)
 
test(a=1, b=2, c=3)
cs

 

참고

https://devpouch.tistory.com/121

'컴퓨터 일반' 카테고리의 다른 글

VSC + github 연동  (0) 2022.08.28

 

 

1. github 회원가입 (이메일 인증 필수) https://github.com/
2. github 다운로드 https://git-scm.com/
3. 깃사이트에서 repository 새로 만들기
4. vscode실행하고 새로운 폴더 열기
5. 콘솔창에 다음 명령어 작성
git init
git config --global user.name "깃네임"
git config --global user.email "이메일주소"
git remote add origin 저장소 주소
6. vscode확장(extension)에서 GitHub Pull Requests and Issues설치

'컴퓨터 일반' 카테고리의 다른 글

[블로그 코드 예쁘게] color Script사용하기  (0) 2022.08.31

+ Recent posts