Color Scripter 티스토리에 코드 넣기

ET의 정보 /IT정보|2019. 10. 3. 10:59

이전에 Color Scripter에 대해 소개해 드렸는데요. 티스토리에 경우 몇 가지 설정을 해주어야 합니다.

 

 

세부 설정에 들어가서 HTML 태그 자체 복사를 체크해주시고 복사하시면 제대로 하이라이트 효과가 적용된 것을 확인하실 수 있습니다.

 

 

HTML 태그 자체 복사를 체크 전

 

 

 

 

 

 

 

 

 

 

 

 

 

HTML 태그 자체 복사를 체크 후

 

#include<stdio.h> //malloc
 
//Struct to form a linked list of int(s)
struct ll {
    int data;
    struct ll *next;
};
 
//Define linked list functions
struct ll* insert_back(struct ll *frontint num);
struct ll* insert_front(struct ll *frontint num);
int search(struct ll*frontint val);
void print(struct ll*front);
 
struct ll* create_node(int num);

댓글()