JuliaLang / IJulia.jl

Julia kernel for Jupyter
MIT License
2.81k stars 413 forks source link

fix `jupyter kernelspec` invalid name warning #1028

Closed xuestrange closed 2 years ago

xuestrange commented 2 years ago

Kernel names can only contain ASCII letters and numbers and these separators: - . _ (hyphen, period, and underscore)

if the name contains other symbols like ( ) brackets and space, jupyter will give a warning and substitute all illegal symbol to - image

fakerms commented 2 years ago

Visual name can have blank in it, so it is better to change the default logic for converting name to specname.

PR #1004 has done this.