css - jupyter notebook justify text in markdown cells -




topic

hey, use jupyter notebooks thesis. therefore nice format text within markdown cells justified text.

settings

i created {youruser}/.jupyter/custom/custom.cssfile follwoing settings:
(more examples)

.text_cell_render { /* customize text cells */     font-family: "arial";     font-size: 15pt;     line-height: 145%;     text-align: justify;     word-wrap: break-word; }  .codemirror pre { /* customize code cells */     font-size: 14pt; } 

my problem is, every setting of css applies notebook except text-align: justify; , in parts.

example

now test notebook shows strange behavior, there no justified text if insert normal text that, if somehow format text within order justification applies.

how can make work? cheers!





wiki

Comments

Popular posts from this blog

Asterisk AGI Python Script to Dialplan does not work -

python - Read npy file directly from S3 StreamingBody -

kotlin - Out-projected type in generic interface prohibits the use of metod with generic parameter -