Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions data/tooling-data.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3183,4 +3183,20 @@
supportedDialects:
draft: ['2020-12']
toolingListingNotes: '[A reference to MetaConfigurator papers](https://rdcu.be/dJvgS).'

- name: 'json-schema'
description: 'A Ruby JSON Schema Validator ensures that JSON data adheres to a predefined structure, preventing errors and maintaining data integrity in applications.'
toolingTypes:
['validator']
languages: ['Ruby']
maintainers:
- name: 'Vox Pupuli'
platform: 'github'
license: 'MIT'
source: 'https://github.com/voxpupuli/json-schema/'
homepage: 'https://github.com/voxpupuli/json-schema/'
supportedDialects:
draft: ['1', '2', '3', '4', '6']



2 changes: 1 addition & 1 deletion pages/blog/posts/[slug].page.tsx
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jagpreetrahi why these changes?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@DhairyaMajmudar, I only made changes to the tooling-data.yml file. The slug-page.tsx file was included in my pull request because I created the PR from the main branch. However, I’ve ensured that these changes won’t affect any existing code. Additionally, since my previous PR hasn’t been merged yet, its commits are also reflected in the main branch.

Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export default function StaticMarkdownPage({
</div>
<div className='flex-1 lg:w-3/4 w-full'>
<div
className='bg-slate-50 h-[500px] w-full rounded-lg bg-cover mb-10 bg-center'
className='bg-slate-50 w-full rounded-lg bg-cover mb-10 bg-center min-h-[200px] sm:min-h-[300px] md:min-h-[400px] lg:min-h-[500px]'
style={{ backgroundImage: `url(${frontmatter.cover})` }}
/>
<StyledMarkdown markdown={content} />
Expand Down