Code Monkey home page Code Monkey logo

ev0-astro-theme's Introduction

ev0-astro-theme's People

Contributors

allcontributors[bot] avatar andybaronp avatar dcyar avatar e10ydev avatar erasmoh avatar fountainpen avatar franciscoagx avatar galexbh avatar gndx avatar thomasbnt avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

ev0-astro-theme's Issues

Label page A large number of duplicate labels | Have been solved

Hello, I found the blog framework you wrote is very nice, so I used it to learn and change it to my favorite style, and then I found a situation that there would be a lot of repeats in the tag page, and then I asked the ai , ai gave a solution. Now replacing the function with this will solve the duplication problem

I don't know how to apply submit code without using github I am not a professional programmer and only know a little html and css so here is the question

Here is the modified code src\utils\getAllTags.ts


export const getTaxonomy = async (collection: string, name: string) => {
const singlePages = await getCollection(collection);
const taxonomyPages = singlePages.map((page) => page.data[name]);
let taxonomies = [];
for (let i = 0; i < taxonomyPages.length; i++) {
const categoryArray = taxonomyPages[i];
for (let j = 0; j < categoryArray.length; j++) {
const newTaxonomy = {
name: categoryArray[j],
slug: slugify(categoryArray[j]),
};
if (!taxonomies.find(taxonomy => taxonomy.name === newTaxonomy.name && taxonomy.slug === newTaxonomy.slug)) {
taxonomies.push(newTaxonomy);
}
}
}
return taxonomies;
};

image

Duplicate categories on categories page

I created 2 posts with same category. When i open category page, i see duplicate categories. I was fix this code and running successfuly without duplicate data. Can i pull this bugs? Thanks

Code blocks error

Hello, I have an issue on the code blocks and so does the theme preview at this URL: https://ev0.gndx.dev/blog/markdown-style-guide/

Uncaught TypeError: Cannot read properties of null (reading 'addEventListener')

The error comes from the Code.astro file, the variable button and check are null:

  codeBlock.forEach((code) => {
    const button = code.querySelector(".copy-button");
    const check = code.querySelector(".check-span");

It looks like the component expect the button to be there, but for some reason in the HTML the code block actually looks like

<pre class="astro-code material-theme-palenight" style="background-color:#292D3E;color:#babed8; overflow-x: auto; white-space: pre-wrap; word-wrap: break-word;" tabindex="0">
<!-- ... contents ... -->
</pre>

I have no idea where this HTML comes from as I cannot find any reference to the class astro-code in the codebase.

Bug: When building the blog

I am experiencing the following problem when using pnpm build

And the dist created is the following:
image

Although in the preview everything is fine.
image

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.