Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OmniMarkupPreviewer 404

Tags:

sublimetext3

(English is not my native language)

Hello, I established OmniMarkupPreviewer. I open my page with Mediawiki markup and I press Ctrl + Alt + o to see it in my browser. But the mistake opened:

Error: 404 Not Found

Sorry, the requested URL 'http://127.0.0.1:51004/view/31' caused an error:

'buffer_id(31) is not valid (closed or unsupported file format)'

**NOTE:** If you run multiple instances of Sublime Text, you may want to adjust
the `server_port` option in order to get this plugin work again.

I tried to change «Settings - User» as advised here:

{
    "server_host": "0.0.0.0",
    "server_port": 9998
}

But the new mistake turned out:

Sorry, the requested URL 'http://127.0.0.1:9998/view/52' caused an error:

'buffer_id(52) is not valid (closed or unsupported file format)'

**NOTE:** If you run multiple instances of Sublime Text, you may want to adjust
the `server_port` option in order to get this plugin work again.

What I need to make for the correct work of OmniMarkupPreviewer?

like image 619
Саша Черных Avatar asked Mar 04 '16 14:03

Саша Черных


1 Answers

there are two solutions in here by @scuml, i solved this problem by first solution: [Remove Strikethrough Extension]

Here is the answer:

Sublime Text > Preferences > Package Settings > OmniMarkupPreviewer > Settings - User

paste the following to remove the strikeout package.

{
    "renderer_options-MarkdownRenderer": {
        "extensions": ["tables", "fenced_code", "codehilite"]
    }
}
like image 166
Xiongmin LIN Avatar answered Oct 07 '22 01:10

Xiongmin LIN