diff --git a/LICENSE b/LICENSE deleted file mode 100644 index e9d84ae..0000000 --- a/LICENSE +++ /dev/null @@ -1,12 +0,0 @@ -Copyright (C) 2006 by Rob Landley - -Permission to use, copy, modify, and/or distribute this software for any purpose -with or without fee is hereby granted. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE -OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. diff --git a/README.md b/README.md index 551609b..e0f9319 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ More information: bohyewoo.com
Or send email to here: bohye.woo@gmail.com
## How to run the code -python3 annotation-bot.py --jid user@domain --room roomname@domain --nick nickname-of-the-bot +python3 annotation-bot.py --jid your-user-name@your-domain-name --room room-name@domain --nick nickname-of-the-bot ## How to comment diff --git a/annotation-bot.py b/annotation-bot.py index 87c7f97..b3bea95 100755 --- a/annotation-bot.py +++ b/annotation-bot.py @@ -33,14 +33,13 @@ def make_numbered_text(input_text, output_html): x = 1 with open(output_html, 'w') as new_html: # open the output_html with writing only as new_html - new_html.write('') + new_html.write('') for line in lines: # for each line in the list of lines new_html.write( '
{}
{}
'.format( x, x, x, line)) x = x + 1 - new_html.write('') + new_html.write('') print('I wrote a file', output_html) diff --git a/style.css b/style.css index 734d44f..da53456 100755 --- a/style.css +++ b/style.css @@ -7,7 +7,7 @@ } body{ - font-size: 13px; + font-size: 17px; line-height: 1.4em } @@ -29,7 +29,7 @@ } .comment{ - width: 30%; + width: 40%; font-size: 10pt; line-height: 1.5em; /* column-count:3; @@ -51,13 +51,13 @@ .leftcolumn { font:black; - width: 30%; float: left; + width: 50%; float: left; display: inline-flex; } .rightcolumn { float: right; - width: 70% + width: 50% } /* unvisited link */ @@ -90,7 +90,7 @@ } img:hover{ - max-width: 50%; + max-width: 100%; }