About: Preview current HTML file   Sponge Permalink

An Entity of Type : owl:Thing, within Data Space : 134.155.108.49:8890 associated with source dataset(s)

A text-based web browser such as elinks can extract a formatted view of the text from an html file or a web page. The following shows how to use elinks to read that text into a scratch buffer. You might do that for a quick preview, or to copy text from the displayed html page. After sourcing the above, and assuming the default backslash Leader key, you can:

AttributesValues
rdfs:label
  • Preview current HTML file
rdfs:comment
  • A text-based web browser such as elinks can extract a formatted view of the text from an html file or a web page. The following shows how to use elinks to read that text into a scratch buffer. You might do that for a quick preview, or to copy text from the displayed html page. After sourcing the above, and assuming the default backslash Leader key, you can:
Version
  • 6(xsd:integer)
dbkwik:vim/property/wikiPageUsesTemplate
Previous
  • 126(xsd:integer)
Complexity
  • basic
Created
  • 2001(xsd:integer)
ID
  • 127(xsd:integer)
NEXT
  • 128(xsd:integer)
Rating
  • 4(xsd:integer)
abstract
  • A text-based web browser such as elinks can extract a formatted view of the text from an html file or a web page. The following shows how to use elinks to read that text into a scratch buffer. You might do that for a quick preview, or to copy text from the displayed html page. function! ViewHtmlText(url) if !empty(a:url) new setlocal buftype=nofile bufhidden=hide noswapfile execute 'r !elinks ' . a:url . ' -dump -dump-width ' . winwidth(0) 1d endif endfunction " Save and view text for current html file. nnoremap H :updatecall ViewHtmlText(expand('%:p')) " View text for visually selected url. vnoremap h y:call ViewHtmlText(@@) " View text for URL from clipboard. " On Linux, use @* for current selection or @+ for text in clipboard. nnoremap h :call ViewHtmlText(@+) After sourcing the above, and assuming the default backslash Leader key, you can: * Edit an html file, then type \H to save and preview the file. * Visually select the full path of a local html file or a URL, then type \h to preview the file or web page. * Copy the full path of a local html file or a URL in another application, then type \h to preview the file or web page in Vim.
Alternative Linked Data Views: ODE     Raw Data in: CXML | CSV | RDF ( N-Triples N3/Turtle JSON XML ) | OData ( Atom JSON ) | Microdata ( JSON HTML) | JSON-LD    About   
This material is Open Knowledge   W3C Semantic Web Technology [RDF Data] Valid XHTML + RDFa
OpenLink Virtuoso version 07.20.3217, on Linux (x86_64-pc-linux-gnu), Standard Edition
Data on this page belongs to its respective rights holders.
Virtuoso Faceted Browser Copyright © 2009-2012 OpenLink Software