EldoranDev / gridsome-plugin-remark-shiki

Syntax highlighter for markdown code blocks using shiki
15 stars 8 forks source link

Cannot work with gridsome-plugin-remark-twitter #8

Closed mallim closed 5 years ago

mallim commented 5 years ago

Referring to danvega/gridsome-plugin-remark-twitter#3

The twitter http link will not get rendered given the following configuration:

  plugins: [
    [
      "gridsome-plugin-remark-shiki",
      {
        theme: "min-dark",
        skipInline: true
      },
      "gridsome-plugin-remark-twitter"
    ]
  ]
EldoranDev commented 5 years ago

Your config might be faulty,

try

plugins: [
        [
          "gridsome-plugin-remark-shiki",
          {
            theme: "min-dark",
            skipInline: true
          },
        ],
          "gridsome-plugin-remark-twitter"
      ]

The plugins should not be in the same array.

If that does not fix things, could you provide me a sample repository ?

mallim commented 5 years ago

Thanks for your help. Finally able to use gridsome-plugin-remark-twitter