프로그래밍 팁 / / 2019. 11. 17. 12:38

코드 스크랩 ( code scrap / code copy for web) 간편하게 하기. Color Scripter.

https://colorscripter.com/에서 제공하는 클립보드를 활용해보자. 이를 사용하지않고 윈도우 클립보드를 쓰면 위와 같이 된다. 하지만 아래와 같이 코틀린으로 언어를 세팅하고 클립보드를 사용하면, 

 

Color Scripter

Simple & Flexible Syntax HighLighter

colorscripter.com

    

 

이를 사용해서 클립보드 복붙을 하면 아래와 같이 컬러링이 된 문자열을 불러 올 수 있다.

 
1
2
3
4
5
6
7
8
9
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:orientation="vertical"
    android:padding="10dp"
    tools:context=".LoginActivity">
 
 

 

 

  • 네이버 블로그 공유
  • 네이버 밴드 공유
  • 페이스북 공유
  • 카카오스토리 공유