web-tools42 / html-importer

automaticly imports files ( js,css ) into a html document

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

html importer

this script imports files ( js,css ) into a html document import js file to html import css file to html

before:

<html>
    <head>
    <!-- {SVN_AUTO_IMPORT type:.js; dir:../tsc_out; exclude:; template:<script src="%PATH"</script>;} -->
    </head>

after:

<html>
   <head>
     <script src="../tsc_out/script1.js"></script>
    <script src="../tsc_out/script2.js"></script>
    <script src="../tsc_out/script3.js"></script>
    <script src="../tsc_out/script4.js"></script>
    <script src="../tsc_out/script5.js"></script>
  </head>

About

automaticly imports files ( js,css ) into a html document


Languages

Language:Python 89.6%Language:HTML 6.0%Language:CSS 3.2%Language:JavaScript 1.2%