Answer the question
In order to leave comments, you need to log in
Is there a service for beautiful design of messages from icq/skype logs?
There is a long Skype text log, in the form
[11:20:00] XXX: hello
[11:20:05] YYY: hello
[11:20:08] XXX: how are you?
...
Is there such an online service, by uploading this log into which the output will be a beautifully designed correspondence?
Answer the question
In order to leave comments, you need to log in
Neither "service" nor "program" is needed for this.
In five minutes, in any text editor that supports regular expression search and replace, you can mark up this log in HTML. If regex support is good, you can do it in one pass (and save the pattern for later). For example, like this:
<div class="a"><date>[11:20:00]</date><em>XXX</em><p>привет</p></div>
<div class="b"><date>[11:20:05]</date><em>YYY</em><p>привет</p></div>
<div class="a"><date>[11:20:08]</date><em>XXX</em><p>как дела?</p></div>
div {display:block;
width: 80%;
border-radius:10px;
border-width:1px;
padding:10px;
margin:5px;
border-style:solid;
}
.a {background-color: #89FFA1;
float:right;
border-color:#3FA346;
}
.b {background-color: #89DBFF;
float:left;
border-color: #3F85A3;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question