Home > front end >  Yaml github issue template showing raw file
Yaml github issue template showing raw file

Time:01-28

I'm using github issue template in yaml. I copy/pasted the example code on github docs, and the select screen worked properly:

( ) <----------------------------------- 
     |Bug report          [Get started] | <- clicked
     |File a bug report                 |
      ---------------------------------- 

but when I click the [Get started] button, the issue is showing me markdown editor with raw yaml text:

( ) <---------------------------------- 
     |[Title                          ]|
     |[Write] [Preview]                |
      --------------------------------- 
     | ------------------------------- |
     ||name: bug report               ||
     ||description: File a bug report ||
     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      ================================= 

But when I try with exact same code on other repository -- which I made it for testing -- works fine.

CodePudding user response:

I found the problem:

the filename should not include unicode characters(non-ASCII).

  • Related