@@ -228,7 +228,7 @@ define([
228228code . appendLine ( 'import matplotlib.pyplot as plt' ) ;
229229code . appendLine ( 'import json' ) ;
230230// code.append(`print(json.dumps(plt.style.available))`);
231- code . append ( `print(json.dumps([{ 'label': s, 'value':"'"+s+"'" } for s in plt.style.available]))` ) ;
231+ code . append ( `print(json.dumps([{ 'label': s, 'value':s } for s in plt.style.available]))` ) ;
232232this . kernelExecute ( code . toString ( ) , function ( result ) {
233233// 사용가능한 스타일 시트 목록
234234var varList = JSON . parse ( result ) ;
@@ -261,7 +261,7 @@ define([
261261code . appendLine ( 'import json' ) ;
262262code . appendLine ( "import matplotlib.font_manager as fm" ) ;
263263code . appendLine ( "_ttflist = fm.fontManager.ttflist" ) ;
264- code . append ( `print(json.dumps([{"label": f.name, "value":("'" + f.name + "'") } for f in _ttflist]))` ) ;
264+ code . append ( `print(json.dumps([{"label": f.name, "value": f.name} for f in _ttflist]))` ) ;
265265this . kernelExecute ( code . toString ( ) , function ( result ) {
266266// 사용가능한 폰트 목록
267267var varList = JSON . parse ( result ) ;
@@ -273,7 +273,7 @@ define([
273273if ( mdvalue != undefined && mdvalue != '' ) {
274274suggestInput . setValue ( mdvalue ) ;
275275} else {
276- suggestInput . setValue ( "' Gulim' " ) ;
276+ suggestInput . setValue ( "Gulim" ) ;
277277}
278278suggestInput . setSuggestList ( function ( ) { return varList ; } ) ;
279279// suggestInput.setNormalFilter(false);
@@ -317,7 +317,7 @@ define([
317317sbCode . appendLine ( '' ) ;
318318sbCode . appendLine ( "from matplotlib.pylab import rcParams" ) ;
319319if ( fontfamily != '' ) {
320- sbCode . appendFormatLine ( "rcParams['font.family'] = {0}" , fontfamily ) ;
320+ sbCode . appendFormatLine ( "rcParams['font.family'] =' {0}' " , fontfamily ) ;
321321}
322322if ( fontsize != '' ) {
323323sbCode . appendFormatLine ( "rcParams['font.size'] = {0}" , fontsize ) ;