mirror of
https://github.com/SphericalKat/medium.rip.git
synced 2024-11-16 11:25:57 +00:00
feat: add algorithm to parse ranges with markup
Signed-off-by: Sphericalkat <amolele@gmail.com>
This commit is contained in:
parent
848cd514d0
commit
4b8607b12a
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
|||||||
.env
|
.env
|
||||||
node_modules
|
node_modules
|
||||||
|
frontend/dist
|
@ -1,6 +1,11 @@
|
|||||||
package routes
|
package routes
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
|
"log"
|
||||||
|
"strings"
|
||||||
|
"time"
|
||||||
|
|
||||||
"github.com/gofiber/fiber/v2"
|
"github.com/gofiber/fiber/v2"
|
||||||
"github.com/medium.rip/pkg/client"
|
"github.com/medium.rip/pkg/client"
|
||||||
)
|
)
|
||||||
@ -16,7 +21,26 @@ func show(c *fiber.Ctx) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
return c.JSON(e)
|
post := e.Data.Post
|
||||||
|
publishDate := time.UnixMilli(e.Data.Post.CreatedAt)
|
||||||
|
log.Println(publishDate)
|
||||||
|
|
||||||
|
var sb strings.Builder
|
||||||
|
|
||||||
|
for _, node := range post.Content.BodyModel.Paragraphs {
|
||||||
|
switch node.Type {
|
||||||
|
case "H3":
|
||||||
|
sb.WriteString(fmt.Sprintf("<h3>%s</h3>", node.Text))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return c.Render("show", fiber.Map {
|
||||||
|
"Title": post.Title,
|
||||||
|
"UserId": post.Creator.ID,
|
||||||
|
"Author": post.Creator.Name,
|
||||||
|
"PublishDate": publishDate.Format(time.DateOnly),
|
||||||
|
"Nodes": post.Content.BodyModel.Paragraphs,
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func index(c *fiber.Ctx) error {
|
func index(c *fiber.Ctx) error {
|
||||||
|
1
frontend/dist/assets/index-4d1e72db.css
vendored
1
frontend/dist/assets/index-4d1e72db.css
vendored
@ -1 +0,0 @@
|
|||||||
*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.text-2xl{font-size:1.5rem;line-height:2rem}:root{--accent: #23b0ff;--background: #1f222a}html,body{width:100%;height:100%}html{font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}@media (min-width: 1024px){html{font-size:1.125rem;line-height:1.7777778}}body{background-color:#1f222a;color:#fff;line-height:1.54;letter-spacing:-.02em;font-variant-ligatures:contextual;font-size:1rem}.text-accent{color:var(--accent)}.bg-accent{background:var(--accent)}
|
|
2
frontend/dist/index.html
vendored
2
frontend/dist/index.html
vendored
@ -6,7 +6,7 @@
|
|||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
|
||||||
<title>{{ .Title }}</title>
|
<title>{{ .Title }}</title>
|
||||||
<link rel="stylesheet" href="/assets/index-4d1e72db.css">
|
<link rel="stylesheet" href="/assets/index-bab4abd8.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1 class="text-2xl">Hello, World!</h1>
|
<h1 class="text-2xl">Hello, World!</h1>
|
||||||
|
35
frontend/dist/show.html
vendored
35
frontend/dist/show.html
vendored
@ -0,0 +1,35 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||||
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||||
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap"
|
||||||
|
rel="stylesheet">
|
||||||
|
|
||||||
|
<title>{{ .Title }}</title>
|
||||||
|
<link rel="stylesheet" href="/assets/show-1b4526c3.css">
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body class="flex flex-col h-full w-full items-center">
|
||||||
|
<article class="prose lg:prose-xl pt-20">
|
||||||
|
<h2 class="text-2xl">{{.Title}}</h2>
|
||||||
|
<p><a href="https://medium.com/u/{{.UserId}}">{{.Author}}</a> on {{.PublishDate}}</p>
|
||||||
|
{{range .Nodes}}
|
||||||
|
{{if eq .type "H3"}}
|
||||||
|
<h3>.text</h3>
|
||||||
|
{{end}}
|
||||||
|
{{if eq .type "IMG"}}
|
||||||
|
<h3>.text</h3>
|
||||||
|
{{end}}
|
||||||
|
{{end}}
|
||||||
|
</article>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -4,7 +4,7 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<link rel="stylesheet" href="src/index.css">
|
<link rel="stylesheet" href="src/styles.css">
|
||||||
<title>{{ .Title }}</title>
|
<title>{{ .Title }}</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@tailwindcss/typography": "^0.5.9",
|
||||||
"autoprefixer": "^10.4.14",
|
"autoprefixer": "^10.4.14",
|
||||||
"postcss": "^8.4.23",
|
"postcss": "^8.4.23",
|
||||||
"tailwindcss": "^3.3.2",
|
"tailwindcss": "^3.3.2",
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
lockfileVersion: '6.0'
|
lockfileVersion: '6.0'
|
||||||
|
|
||||||
devDependencies:
|
devDependencies:
|
||||||
|
'@tailwindcss/typography':
|
||||||
|
specifier: ^0.5.9
|
||||||
|
version: 0.5.9(tailwindcss@3.3.2)
|
||||||
autoprefixer:
|
autoprefixer:
|
||||||
specifier: ^10.4.14
|
specifier: ^10.4.14
|
||||||
version: 10.4.14(postcss@8.4.23)
|
version: 10.4.14(postcss@8.4.23)
|
||||||
@ -274,6 +277,18 @@ packages:
|
|||||||
fastq: 1.15.0
|
fastq: 1.15.0
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/@tailwindcss/typography@0.5.9(tailwindcss@3.3.2):
|
||||||
|
resolution: {integrity: sha512-t8Sg3DyynFysV9f4JDOVISGsjazNb48AeIYQwcL+Bsq5uf4RYL75C1giZ43KISjeDGBaTN3Kxh7Xj/vRSMJUUg==}
|
||||||
|
peerDependencies:
|
||||||
|
tailwindcss: '>=3.0.0 || insiders'
|
||||||
|
dependencies:
|
||||||
|
lodash.castarray: 4.4.0
|
||||||
|
lodash.isplainobject: 4.0.6
|
||||||
|
lodash.merge: 4.6.2
|
||||||
|
postcss-selector-parser: 6.0.10
|
||||||
|
tailwindcss: 3.3.2
|
||||||
|
dev: true
|
||||||
|
|
||||||
/any-promise@1.3.0:
|
/any-promise@1.3.0:
|
||||||
resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
|
resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
|
||||||
dev: true
|
dev: true
|
||||||
@ -557,6 +572,18 @@ packages:
|
|||||||
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
|
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/lodash.castarray@4.4.0:
|
||||||
|
resolution: {integrity: sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==}
|
||||||
|
dev: true
|
||||||
|
|
||||||
|
/lodash.isplainobject@4.0.6:
|
||||||
|
resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
|
||||||
|
dev: true
|
||||||
|
|
||||||
|
/lodash.merge@4.6.2:
|
||||||
|
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
|
||||||
|
dev: true
|
||||||
|
|
||||||
/merge2@1.4.1:
|
/merge2@1.4.1:
|
||||||
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
|
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
|
||||||
engines: {node: '>= 8'}
|
engines: {node: '>= 8'}
|
||||||
@ -697,6 +724,14 @@ packages:
|
|||||||
postcss-selector-parser: 6.0.13
|
postcss-selector-parser: 6.0.13
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/postcss-selector-parser@6.0.10:
|
||||||
|
resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==}
|
||||||
|
engines: {node: '>=4'}
|
||||||
|
dependencies:
|
||||||
|
cssesc: 3.0.0
|
||||||
|
util-deprecate: 1.0.2
|
||||||
|
dev: true
|
||||||
|
|
||||||
/postcss-selector-parser@6.0.13:
|
/postcss-selector-parser@6.0.13:
|
||||||
resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==}
|
resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==}
|
||||||
engines: {node: '>=4'}
|
engines: {node: '>=4'}
|
||||||
|
@ -0,0 +1,34 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="src/show.css">
|
||||||
|
|
||||||
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||||
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||||
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap"
|
||||||
|
rel="stylesheet">
|
||||||
|
|
||||||
|
<title>{{ .Title }}</title>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body class="flex flex-col h-full w-full items-center">
|
||||||
|
<article class="prose lg:prose-xl pt-20">
|
||||||
|
<h2 class="text-2xl">{{.Title}}</h2>
|
||||||
|
<p><a href="https://medium.com/u/{{.UserId}}">{{.Author}}</a> on {{.PublishDate}}</p>
|
||||||
|
{{range .Nodes}}
|
||||||
|
{{if eq .type "H3"}}
|
||||||
|
<h3>.text</h3>
|
||||||
|
{{end}}
|
||||||
|
{{if eq .type "IMG"}}
|
||||||
|
<h3>.text</h3>
|
||||||
|
{{end}}
|
||||||
|
{{end}}
|
||||||
|
</article>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
37
frontend/src/show.css
Normal file
37
frontend/src/show.css
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
@tailwind base;
|
||||||
|
@tailwind components;
|
||||||
|
@tailwind utilities;
|
||||||
|
|
||||||
|
:root {
|
||||||
|
--accent: #23b0ff;
|
||||||
|
--background: #1f222a;
|
||||||
|
}
|
||||||
|
|
||||||
|
html, body {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 1024px) {
|
||||||
|
html {
|
||||||
|
font-size: 1.125rem;
|
||||||
|
line-height: 1.7777778;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
/* background-color: #1f222a; */
|
||||||
|
/* color: #ffffff; */
|
||||||
|
/* line-height: 1.54;
|
||||||
|
letter-spacing: -0.02em;
|
||||||
|
font-variant-ligatures: contextual;
|
||||||
|
font-size: 1rem; */
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-accent {
|
||||||
|
color: var(--accent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg-accent {
|
||||||
|
background: var(--accent);
|
||||||
|
}
|
@ -12,10 +12,6 @@ html, body {
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
html {
|
|
||||||
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
html {
|
html {
|
||||||
font-size: 1.125rem;
|
font-size: 1.125rem;
|
@ -1,8 +1,52 @@
|
|||||||
/** @type {import('tailwindcss').Config} */
|
/** @type {import('tailwindcss').Config} */
|
||||||
module.exports = {
|
module.exports = {
|
||||||
content: ["./src/**/*.ts", "./*.html"],
|
content: ["./src/**/*.ts", "./**/*.html"],
|
||||||
theme: {
|
theme: {
|
||||||
extend: {},
|
fontFamily: {
|
||||||
|
'sans': ['Inter'],
|
||||||
|
},
|
||||||
|
extend: {
|
||||||
|
typography: ({ theme }) => ({
|
||||||
|
pink: {
|
||||||
|
css: {
|
||||||
|
'--tw-prose-body': theme('colors.pink[800]'),
|
||||||
|
'--tw-prose-headings': theme('colors.pink[900]'),
|
||||||
|
'--tw-prose-lead': theme('colors.pink[700]'),
|
||||||
|
'--tw-prose-links': theme('colors.pink[900]'),
|
||||||
|
'--tw-prose-bold': theme('colors.pink[900]'),
|
||||||
|
'--tw-prose-counters': theme('colors.pink[600]'),
|
||||||
|
'--tw-prose-bullets': theme('colors.pink[400]'),
|
||||||
|
'--tw-prose-hr': theme('colors.pink[300]'),
|
||||||
|
'--tw-prose-quotes': theme('colors.pink[900]'),
|
||||||
|
'--tw-prose-quote-borders': theme('colors.pink[300]'),
|
||||||
|
'--tw-prose-captions': theme('colors.pink[700]'),
|
||||||
|
'--tw-prose-code': theme('colors.pink[900]'),
|
||||||
|
'--tw-prose-pre-code': theme('colors.pink[100]'),
|
||||||
|
'--tw-prose-pre-bg': theme('colors.pink[900]'),
|
||||||
|
'--tw-prose-th-borders': theme('colors.pink[300]'),
|
||||||
|
'--tw-prose-td-borders': theme('colors.pink[200]'),
|
||||||
|
'--tw-prose-invert-body': theme('colors.pink[200]'),
|
||||||
|
'--tw-prose-invert-headings': theme('colors.white'),
|
||||||
|
'--tw-prose-invert-lead': theme('colors.pink[300]'),
|
||||||
|
'--tw-prose-invert-links': theme('colors.white'),
|
||||||
|
'--tw-prose-invert-bold': theme('colors.white'),
|
||||||
|
'--tw-prose-invert-counters': theme('colors.pink[400]'),
|
||||||
|
'--tw-prose-invert-bullets': theme('colors.pink[600]'),
|
||||||
|
'--tw-prose-invert-hr': theme('colors.pink[700]'),
|
||||||
|
'--tw-prose-invert-quotes': theme('colors.pink[100]'),
|
||||||
|
'--tw-prose-invert-quote-borders': theme('colors.pink[700]'),
|
||||||
|
'--tw-prose-invert-captions': theme('colors.pink[400]'),
|
||||||
|
'--tw-prose-invert-code': theme('colors.white'),
|
||||||
|
'--tw-prose-invert-pre-code': theme('colors.pink[300]'),
|
||||||
|
'--tw-prose-invert-pre-bg': 'rgb(0 0 0 / 50%)',
|
||||||
|
'--tw-prose-invert-th-borders': theme('colors.pink[600]'),
|
||||||
|
'--tw-prose-invert-td-borders': theme('colors.pink[700]'),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
},
|
||||||
},
|
},
|
||||||
plugins: [],
|
plugins: [
|
||||||
|
require('@tailwindcss/typography'),
|
||||||
|
],
|
||||||
};
|
};
|
||||||
|
86
pkg/converters/markup_converter.go
Normal file
86
pkg/converters/markup_converter.go
Normal file
@ -0,0 +1,86 @@
|
|||||||
|
package converters
|
||||||
|
|
||||||
|
import (
|
||||||
|
"sort"
|
||||||
|
|
||||||
|
"github.com/medium.rip/pkg/entities"
|
||||||
|
)
|
||||||
|
|
||||||
|
type RangeWithMarkup struct {
|
||||||
|
Range []int
|
||||||
|
Markups []entities.Markup
|
||||||
|
}
|
||||||
|
|
||||||
|
func unique(intSlice []int) []int {
|
||||||
|
keys := make(map[int]bool)
|
||||||
|
list := []int{}
|
||||||
|
for _, entry := range intSlice {
|
||||||
|
if _, value := keys[entry]; !value {
|
||||||
|
keys[entry] = true
|
||||||
|
list = append(list, entry)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return list
|
||||||
|
}
|
||||||
|
|
||||||
|
func ranges(text string, markups []entities.Markup) []RangeWithMarkup {
|
||||||
|
ranges := make([]RangeWithMarkup, 0)
|
||||||
|
|
||||||
|
// first, get all the borders of the markups
|
||||||
|
markupBoundaries := make([]int, 0)
|
||||||
|
for _, m := range markups {
|
||||||
|
markupBoundaries = append(markupBoundaries, []int{int(m.Start), int(m.End)}...)
|
||||||
|
}
|
||||||
|
|
||||||
|
// include the start and end indexes of the text
|
||||||
|
markupBoundaries = append([]int{0}, markupBoundaries...)
|
||||||
|
markupBoundaries = append(markupBoundaries, len(text))
|
||||||
|
|
||||||
|
// remove duplicates
|
||||||
|
markupBoundaries = unique(markupBoundaries)
|
||||||
|
|
||||||
|
// sort slice
|
||||||
|
sort.Slice(markupBoundaries, func(i, j int) bool {
|
||||||
|
return markupBoundaries[i] < markupBoundaries[j]
|
||||||
|
})
|
||||||
|
|
||||||
|
// attach markup to every range
|
||||||
|
for i := 0; i < len(markupBoundaries)-1; i++ {
|
||||||
|
start := markupBoundaries[i]
|
||||||
|
end := markupBoundaries[i+1]
|
||||||
|
|
||||||
|
// check if this markup is covered by the range
|
||||||
|
coveredMarkups := make([]entities.Markup, 0)
|
||||||
|
for _, m := range markups {
|
||||||
|
if (int(m.Start) >= start && int(m.Start) < end) || (int(m.End - 1) >= start && int(m.End - 1) < end) {
|
||||||
|
coveredMarkups = append(coveredMarkups, m)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// append the range
|
||||||
|
ranges = append(ranges, RangeWithMarkup{
|
||||||
|
Range: []int{start, end},
|
||||||
|
Markups: coveredMarkups,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
return ranges
|
||||||
|
}
|
||||||
|
|
||||||
|
func Convert(text string, markups []entities.Markup) {
|
||||||
|
// for _, m := range markups {
|
||||||
|
// switch m.Type {
|
||||||
|
// case "A":
|
||||||
|
// if m.Href != nil {
|
||||||
|
|
||||||
|
// } else if {
|
||||||
|
// m.UserID != nil {
|
||||||
|
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// case "CODE":
|
||||||
|
// case "EM":
|
||||||
|
// case "STRONG":
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
}
|
58
pkg/converters/markup_converter_test.go
Normal file
58
pkg/converters/markup_converter_test.go
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
package converters
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/medium.rip/pkg/entities"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestRanges(t *testing.T) {
|
||||||
|
ranges := ranges("strong and emphasized only", []entities.Markup{
|
||||||
|
{
|
||||||
|
Type: "STRONG",
|
||||||
|
Start: 0,
|
||||||
|
End: 10,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Type: "EM",
|
||||||
|
Start: 7,
|
||||||
|
End: 21,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
if len(ranges) != 4 {
|
||||||
|
t.Errorf("Expected 4 ranges, got %d", len(ranges))
|
||||||
|
}
|
||||||
|
|
||||||
|
if ranges[0].Range[0] != 0 || ranges[0].Range[1] != 7 {
|
||||||
|
t.Errorf("Expected range to be [0, 7], got %v", ranges[0].Range)
|
||||||
|
}
|
||||||
|
|
||||||
|
if ranges[0].Markups[0].Type != "STRONG" {
|
||||||
|
t.Errorf("Expected markup to be STRONG, got %s", ranges[0].Markups[0].Type)
|
||||||
|
}
|
||||||
|
|
||||||
|
if ranges[1].Range[0] != 7 || ranges[1].Range[1] != 10 {
|
||||||
|
t.Errorf("Expected range to be [7, 10], got %v", ranges[1].Range)
|
||||||
|
}
|
||||||
|
|
||||||
|
if ranges[1].Markups[0].Type != "STRONG" {
|
||||||
|
t.Errorf("Expected markup to be STRONG, got %s", ranges[1].Markups[0].Type)
|
||||||
|
}
|
||||||
|
|
||||||
|
if ranges[2].Range[0] != 10 || ranges[2].Range[1] != 21 {
|
||||||
|
t.Errorf("Expected range to be [10, 21], got %v", ranges[2].Range)
|
||||||
|
}
|
||||||
|
|
||||||
|
if ranges[2].Markups[0].Type != "EM" {
|
||||||
|
t.Errorf("Expected markup to be EM, got %s", ranges[2].Markups[0].Type)
|
||||||
|
}
|
||||||
|
|
||||||
|
if ranges[3].Range[0] != 21 || ranges[3].Range[1] != 26 {
|
||||||
|
t.Errorf("Expected range to be [21, 26], got %v", ranges[3].Range)
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ranges[3].Markups) != 0 {
|
||||||
|
t.Errorf("Expected markup to be empty, got %v", ranges[3].Markups)
|
||||||
|
}
|
||||||
|
}
|
453
response.json
453
response.json
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user