adamschwartz / log

Console.log with style.
https://adamschwartz.co/log
MIT License
3.01k stars 140 forks source link

how to install this plugin? #9

Closed canvasT closed 11 years ago

canvasT commented 11 years ago

I didn't know how to install this plugin.

adamschwartz commented 11 years ago

It's not exactly a plugin. It's a single javascript file which you include in the source of an HTML page.

<!DOCTYPE html>
<html>
    <head>
        <script src="log.js"></script>
        <script>log('this is _bold_');</script>
    </head>
    <body></body>
</html>
canvasT commented 11 years ago

I got it, thank you!