Jupyter / IPython Notebook text editing as markdown
up vote
0
down vote
favorite
Hi all I'm starting a new Python 3 document in Jupyter, and when I tried to put the test in the center in a markdown, I put: <h1><center> Whatever Report </center></h1>
<center> Based on the data from *January 1, 2018* </center>
As you can see I tried to italicize the date, yet when I ran the command, Based on the data from *January 1, 2018*is printed as a result. Why aren't the texts being italicized?
Thanks much!
python formatting jupyter-notebook italic
add a comment |
up vote
0
down vote
favorite
Hi all I'm starting a new Python 3 document in Jupyter, and when I tried to put the test in the center in a markdown, I put: <h1><center> Whatever Report </center></h1>
<center> Based on the data from *January 1, 2018* </center>
As you can see I tried to italicize the date, yet when I ran the command, Based on the data from *January 1, 2018*is printed as a result. Why aren't the texts being italicized?
Thanks much!
python formatting jupyter-notebook italic
Is there a reason you can't use<i>,</i>tags?
– Evan
Nov 8 at 23:58
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
Hi all I'm starting a new Python 3 document in Jupyter, and when I tried to put the test in the center in a markdown, I put: <h1><center> Whatever Report </center></h1>
<center> Based on the data from *January 1, 2018* </center>
As you can see I tried to italicize the date, yet when I ran the command, Based on the data from *January 1, 2018*is printed as a result. Why aren't the texts being italicized?
Thanks much!
python formatting jupyter-notebook italic
Hi all I'm starting a new Python 3 document in Jupyter, and when I tried to put the test in the center in a markdown, I put: <h1><center> Whatever Report </center></h1>
<center> Based on the data from *January 1, 2018* </center>
As you can see I tried to italicize the date, yet when I ran the command, Based on the data from *January 1, 2018*is printed as a result. Why aren't the texts being italicized?
Thanks much!
python formatting jupyter-notebook italic
python formatting jupyter-notebook italic
edited Nov 8 at 23:54
asked Nov 8 at 23:33
rhea.rao
256
256
Is there a reason you can't use<i>,</i>tags?
– Evan
Nov 8 at 23:58
add a comment |
Is there a reason you can't use<i>,</i>tags?
– Evan
Nov 8 at 23:58
Is there a reason you can't use
<i>, </i> tags?– Evan
Nov 8 at 23:58
Is there a reason you can't use
<i>, </i> tags?– Evan
Nov 8 at 23:58
add a comment |
2 Answers
2
active
oldest
votes
up vote
0
down vote
accepted
Not any kind of markdown expert, but it looks like the asterisks are not interpreted as italics when within an HTML tag. First one works, second does not.
<center>Based on the data from <i>January 1, 2018</i></center>
<center>Based on the data from *January 1, 2018*<center>
Not sure to format that output for SO. Ha.
add a comment |
up vote
0
down vote
You need to put your markdown in markdown cells, not embedded in html.
http://www.firstpythonnotebook.org/markdown/
Thanks for the pointer, just getting started with Jupyter and the guidance is helpful.
– rhea.rao
Nov 9 at 0:17
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
Not any kind of markdown expert, but it looks like the asterisks are not interpreted as italics when within an HTML tag. First one works, second does not.
<center>Based on the data from <i>January 1, 2018</i></center>
<center>Based on the data from *January 1, 2018*<center>
Not sure to format that output for SO. Ha.
add a comment |
up vote
0
down vote
accepted
Not any kind of markdown expert, but it looks like the asterisks are not interpreted as italics when within an HTML tag. First one works, second does not.
<center>Based on the data from <i>January 1, 2018</i></center>
<center>Based on the data from *January 1, 2018*<center>
Not sure to format that output for SO. Ha.
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
Not any kind of markdown expert, but it looks like the asterisks are not interpreted as italics when within an HTML tag. First one works, second does not.
<center>Based on the data from <i>January 1, 2018</i></center>
<center>Based on the data from *January 1, 2018*<center>
Not sure to format that output for SO. Ha.
Not any kind of markdown expert, but it looks like the asterisks are not interpreted as italics when within an HTML tag. First one works, second does not.
<center>Based on the data from <i>January 1, 2018</i></center>
<center>Based on the data from *January 1, 2018*<center>
Not sure to format that output for SO. Ha.
answered Nov 9 at 0:01
Evan
1,026415
1,026415
add a comment |
add a comment |
up vote
0
down vote
You need to put your markdown in markdown cells, not embedded in html.
http://www.firstpythonnotebook.org/markdown/
Thanks for the pointer, just getting started with Jupyter and the guidance is helpful.
– rhea.rao
Nov 9 at 0:17
add a comment |
up vote
0
down vote
You need to put your markdown in markdown cells, not embedded in html.
http://www.firstpythonnotebook.org/markdown/
Thanks for the pointer, just getting started with Jupyter and the guidance is helpful.
– rhea.rao
Nov 9 at 0:17
add a comment |
up vote
0
down vote
up vote
0
down vote
You need to put your markdown in markdown cells, not embedded in html.
http://www.firstpythonnotebook.org/markdown/
You need to put your markdown in markdown cells, not embedded in html.
http://www.firstpythonnotebook.org/markdown/
answered Nov 8 at 23:58
kpie
3,39741432
3,39741432
Thanks for the pointer, just getting started with Jupyter and the guidance is helpful.
– rhea.rao
Nov 9 at 0:17
add a comment |
Thanks for the pointer, just getting started with Jupyter and the guidance is helpful.
– rhea.rao
Nov 9 at 0:17
Thanks for the pointer, just getting started with Jupyter and the guidance is helpful.
– rhea.rao
Nov 9 at 0:17
Thanks for the pointer, just getting started with Jupyter and the guidance is helpful.
– rhea.rao
Nov 9 at 0:17
add a comment |
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53217734%2fjupyter-ipython-notebook-text-editing-as-markdown%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Is there a reason you can't use
<i>,</i>tags?– Evan
Nov 8 at 23:58