Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <h1>Jednoznakové předložky</h1>
<p>
  Zarosenýma mrazil tu psi vaší pitr: prohlížejí ne lovu? Panna usnula se uši hugo těchle. On dlaň lokální? Zmizel vlaku vždyť, po něhož dopisy co začali účtů. Sůl no mocí pil uzná. Žije váha malý světě, osud teď přejete. Pás do chrlil opuštěnou anděl. S dar do znal byt žádnému lest mac zlobí šaty nepřejí. Pokaždé jámu syčí eh rozdělíme komtesa. Hygiena do skromně jistě nad devadesát od odhadl dech, týče tělo tíž objevil lokální by jet dotěrným nejdýl škrtilo. Jé loty ti u spal cimře znalecky. Mu ně sázavě nevyšel? Vyloučit oboru gierke zemi slečny ó otázku nakonec. Vrh roka malá haf závěr bydlet daná 1451 předsíni! Čišelo kost ně obálky zářící svou takový a stoh chystá, přesná ujal ví ulicí nápady, 77 ba led hned ječí ó jiná přeje ó hejda odebral.
</p>

              
            
!

CSS

              
                h1 {
  font-size: 2em;
  line-height: 1.25;
  margin: 15px;
}

p {
  font-size: 1.5em;
  line-height: 1.25;
  margin: 15px;
}
              
            
!

JS

              
                (function($){
    $.fn.czTypesetting = function(){
        this.each(function(index, value){
         var str = $(this).html();
         str = str.replace(/(\s|^)(a|i|k|o|ó|s|u|v|z)(\s+)([^\p{Cc}\p{Cf}\p{zL}\p{Zp}]+)/gmi , '$1$2&nbsp;$4');
         $(this).html(str); 
       });
 
       return this;
    };
}( jQuery ));

$( document ).ready(function() {
    $('p').czTypesetting();
});
 
   
              
            
!
999px

Console