Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter simongloor

    (@simongloor)

    Okay… fixed it.

    I added this in class-plantuml-renderer-public.php after line 70.
    I would have pushed it to a git repository, but I couldn’t find one.

    
    		$new_content = str_replace( '‘','\'',$new_content );	  // 
    		$new_content = str_replace( '…','...',$new_content );	  // 
    		$new_content = str_replace( 'Ä','Ä',$new_content );	  // 
    		$new_content = str_replace( 'Ö','Ö',$new_content );	  // 
    		$new_content = str_replace( 'Ü','Ü',$new_content );	  // 
    		$new_content = str_replace( 'ä','ä',$new_content );	  // 
    		$new_content = str_replace( 'ö','ö',$new_content );	  // 
    		$new_content = str_replace( 'ü','ü',$new_content );	  // 
    		$new_content = str_replace( '<br />',PHP_EOL,$new_content );	//
    
Viewing 1 replies (of 1 total)