[VI]소스 코드를 html문서로 만들기

카테고리 없음 2009. 3. 26. 08:36
소스코드를 html문서로 만들어주는 vi명령
:TOhtml
변환된 html이 상단에 표시되고 test.c ->test.c.html로 저장된다.

예제

1 #include <stdio.h>
2
3 int main(int argc, char **argv)
4 {
5         printf("hello world!!!\n");    
6         return 0;
7 }
: