Giter VIP home page Giter VIP logo

Comments (4)

HaveF avatar HaveF commented on May 26, 2024

Oh, the sql part is also not right... there should no sql before SELECT

SELECT
  date(date) as day,
  count(*) as count
FROM offers_view
GROUP BY day
ORDER BY day

from datasette-dashboards.

rclement avatar rclement commented on May 26, 2024

Thanks @HaveF for catching and reporting this issue!

But when display in dashboars, there is no * before list items

Indeed, there seem to be an issue with the Markdown rendering. I'll look for the culprit and see if I can fix it.

Oh, the sql part is also not right... there should no sql before SELECT

Mmmh interesting, this means the Markdown rendering does not support properly code blocks with language syntax highlighting (it could be rendered all monospace black but still skip the language information)

from datasette-dashboards.

rclement avatar rclement commented on May 26, 2024

Ok I found out some interesting styling implementation details.

Here is the default style concerning ordered and unordered list in Datasette:

ol,
ul {
    list-style: none;
}

However, this is overriden by this style when displaying query results:

.rows-and-columns td ol,
.rows-and-columns td ul {
    list-style: initial;
    list-style-position: inside;
}

We might have to override this using the Datasette Dashboard stylesheet to restore bullet and numbered list only for the Markdown chart component.

from datasette-dashboards.

HaveF avatar HaveF commented on May 26, 2024

Could it possible add class col-demo_markdown?(It's a generated class name)

I notice you use render_markdown function, but why it not works...

How about {% markdown %}...{% endmarkdown %} ?

from datasette-dashboards.

Related Issues (20)

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.