Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(containers-plugin): Being able to add custom containers #3591

Open
4 tasks done
brenoepics opened this issue Feb 21, 2024 · 1 comment · May be fixed by #3603
Open
4 tasks done

feat(containers-plugin): Being able to add custom containers #3591

brenoepics opened this issue Feb 21, 2024 · 1 comment · May be fixed by #3603
Labels
enhancement New feature or request stale

Comments

@brenoepics
Copy link

Is your feature request related to a problem? Please describe.

Currently, you can change the label but you cannot add new containers for new colors and/or icons.
Containers Plugin

Describe the solution you'd like

Adding custom containers to ContainerOptions, then users could add it in DefineConfig / DefineConfigWithTheme

//containers.ts
export interface ContainerOptions {
  infoLabel?: string
  noteLabel?: string
  tipLabel?: string
  warningLabel?: string
  dangerLabel?: string
  detailsLabel?: string
  importantLabel?: string
  cautionLabel?: string
  customContainers?: ...
}

// config.ts
export default defineConfig({
  // ...
  markdown: {
    container: {
      tipLabel: '...',
      warningLabel: '...',
      dangerLabel: '...',
      infoLabel: '...',
      detailsLabel: '...',
      customContainers: [ ... ]
    }
  }
  // ...
})

Describe alternatives you've considered

Disabling GitHub Flavored Markdown-It plugin and registering again with custom alerts.

Additional context

No response

Validations

@brc-dd brc-dd added the enhancement New feature or request label Feb 21, 2024
@brenoepics brenoepics linked a pull request Feb 25, 2024 that will close this issue
@github-actions github-actions bot added the stale label Apr 12, 2024
@dragomano
Copy link
Contributor

I'd also like to be able to translate all these containers on sites with multiple languages.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request stale
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants