-
Notifications
You must be signed in to change notification settings - Fork 0
HTML generation not working? #2
Copy link
Copy link
Open
Labels
questionFurther information is requestedFurther information is requested
Description
First of all, really nice project, it's very useful to have a TUI for this.
I have an issue with the HTML generation. When I try to generate it with diary -g and password, all I get is the template with Null instead of the entries.
<html>
<meta charset="UTF-8">
<head><style>
.header {
padding: 5px;
border-radius: 20px;
text-align: center;
background: #1abc9c;
color: #D3FFED;
font-size: 35px;
box-shadow: 0px 0px 30px 1px #092E13;
transition: 0.3s;
}
.header:hover {
color: white;
box-shadow: 0px 0px 60px 1px #092E13;
}
.entries {
padding: 30px;
border-radius: 20px;
text-align: center;
background: #2BA67B;
color: #D3FFED;
font-size: 25px;
box-shadow: 0px 0px 30px 1px #092E13;
margin: 3%;
transition: 0.3s;
}
.entries:hover {
color: white;
box-shadow: 0px 0px 60px 1px #092E13;
}
.image {
display: block;
border: 5px;
border-color: #D3FFED;
border-style: solid;
border-radius: 20px;
margin-left: auto;
margin-right: auto;
width: 99%;
box-shadow: 0px 0px 30px 1px #092E13;
transition: 0.3s;
}
.image:hover {
border-color: white;
box-shadow: 0px 0px 60px 1px #092E13;
}
.downloader {
border: 5px;
padding: 10px;
color: #D3FFED;
border-style: solid;
border-color: #D3FFED;
border-radius: 20px;
margin-right: 200px;
margin-left: 200px;
transition: 0.3s;
box-shadow: 0px 0px 30px 1px #092E13;
}
.downloader:hover {
color: white;
border-color: white;
margin-left: 190px;
margin-right: 190px;
box-shadow: 0px 0px 60px 1px #092E13;
}
audio {
border: 5px;
background-color: #D3FFED;
border-style: solid;
border-radius: 20px;
border-color: #D3FFED;
box-shadow: 0px 0px 30px 1px #092E13;
width: 50%;
transition: 0.3s;
}
audio:hover{
border-color: white;
width: 52%;
box-shadow: 0px 0px 60px 1px #092E13;
}
body {
background-color: #175942;
}
</style><body><div class="header">
<h2>My Diary<h2>
</div> <br><br><div class="entries"><br> <h1><b> Tue, 2nd November, 2021 </b></h1> <br> Null <br><br><br><br></div><br><div class="entries"><br> <h1><b> Tue, 2nd November, 2021 </b></h1> <br> Null <br><br><br><br></div><br></body></html>
I'll try to see if there's an error on my end. Just wanted to let you know.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested