Hello, I would like to know if there will be other import possibilities in the future, including generic markdown, html and text files. Thank you
Import Markdown, HTML or plain text files into Journey
20 days later
- Edited
Elg97 I would suggest that you can convert to Journey supported format using ChatGPT. An example of Journey's JSON format:
{
"lon" : 1.7976931348623157e+308,
"weather" : {
"place" : "",
"id" : -1,
"degree_c" : 1.7976931348623157e+308,
"description" : "",
"icon" : ""
},
"id" : "1706195709128-37t4bvb7xcvhaabk",
"preview_text" : "",
"folder" : "",
"tags" : [
],
"text" : "",
"type" : "markdown",
"date_modified" : 1706195709000,
"mood" : 0,
"favourite" : false,
"music_artist" : "",
"sentiment" : 0,
"date_journal" : 1706195709000,
"timezone" : "",
"label" : "",
"address" : "",
"photos" : [
],
"lat" : 1.7976931348623157e+308,
"music_title" : ""
}
You can use the following prompt in ChatGPT:
Help me to insert the Markdown text into the JSON text parameter:
This is a text with **Markdown** syntax.
JSON:
{
"lon" : 1.7976931348623157e+308,
"weather" : {
"place" : "",
"id" : -1,
"degree_c" : 1.7976931348623157e+308,
"description" : "",
"icon" : ""
},
"id" : "1706195709128-37t4bvb7xcvhaabk",
"preview_text" : "",
"folder" : "",
"tags" : [
],
"text" : "",
"type" : "markdown",
"date_modified" : 1706195709000,
"mood" : 0,
"favourite" : false,
"music_artist" : "",
"sentiment" : 0,
"date_journal" : 1706195709000,
"timezone" : "",
"label" : "",
"address" : "",
"photos" : [
],
"lat" : 1.7976931348623157e+308,
"music_title" : ""
}
You should then get this:
To insert the Markdown text into the JSON text parameter, you would replace the empty string in the "text" field with the Markdown text. Here is the updated JSON with the Markdown text included:
JSON:
{
"lon" : 1.7976931348623157e+308,
"weather" : {
"place" : "",
"id" : -1,
"degree_c" : 1.7976931348623157e+308,
"description" : "",
"icon" : ""
},
"id" : "1706195709128-37t4bvb7xcvhaabk",
"preview_text" : "",
"folder" : "",
"tags" : [
],
"text" : "This is a text with **Markdown** syntax.",
"type" : "markdown",
"date_modified" : 1706195709000,
"mood" : 0,
"favourite" : false,
"music_artist" : "",
"sentiment" : 0,
"date_journal" : 1706195709000,
"timezone" : "",
"label" : "",
"address" : "",
"photos" : [
],
"lat" : 1.7976931348623157e+308,
"music_title" : ""
}
Hope this helps!
John added the Topic Closed tag .
John changed the title to Import Markdown, HTML or plain text files into Journey .