1
0
Fork 0
mirror of https://github.com/muerwre/vk-tg-bot.git synced 2025-04-29 00:46:41 +07:00

Compare commits

..

2 commits

Author SHA1 Message Date
Fedor Katurov
3fcb2793e7 fix md links again
All checks were successful
Build & Publish / Build & Publish (push) Successful in 1m23s
2025-02-24 21:39:52 +07:00
Fedor Katurov
7dd72aa4e3 disable drone 2025-02-24 21:27:27 +07:00
2 changed files with 3 additions and 1 deletions

View file

@ -11,7 +11,7 @@ steps:
image: plugins/docker image: plugins/docker
when: when:
branch: branch:
- master - never # should be master, but nevermind
settings: settings:
dockerfile: docker/Dockerfile dockerfile: docker/Dockerfile
context: "." context: "."

View file

@ -90,6 +90,8 @@ export class Template<
const output = processor.processSync(text).contents.toString(); const output = processor.processSync(text).contents.toString();
if (markdown) { if (markdown) {
console.log("HERE--->", output, transformMDLinks(output));
return transformMDLinks(output); return transformMDLinks(output);
} }