home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 November / VPR9711A.ISO / VPR_DATA / Special / Koda202 / koda202.lzh / kodama / htmmark.mac < prev    next >
Text File  |  1997-03-10  |  729b  |  25 lines

  1. //こだマクロ(HTML作成)
  2. //htmmark.mac
  3. //このマクロは「秀丸エディタ」用のマクロです。
  4. //97031100
  5.  
  6. main:
  7.     title "特殊文字 - こだマクロ";
  8.     #menu = getininum ( hidemarudir + "\\htmini.txt" , "Mark" , "num" );
  9.     #i = 0;
  10.     while ( #menu + 1 > #i ) {
  11.         $top[#i] = getinistr ( hidemarudir + "\\htmini.txt" , "Mark" , str ( #i ) );
  12.         $menu[#i] = leftstr ( $top[#i] , strstr ( $top[#i] , ":" ) );
  13.         $command[#i] = rightstr ( $top[#i] , strlen ( $top[#i] ) - strstr ( $top[#i] , ":" )  - 1 );
  14.         #i = #i + 1;
  15.     }
  16.     menuarray $menu, #menu + 1;
  17.     #re = result -1;
  18.     if ( result == 0 ) endmacro;
  19.     else {
  20.         inputpos getinistr ( hidemarudir + "\\htmini.txt" , "Line" , "messagex" );
  21.         insert $command[#re];
  22.     }
  23.     endmacro;
  24.  
  25.