Skip to content
#

XML

XML stands for Extensible Markup Language and is a text-based markup language. It is designed to store and transport data. It allows developers to create their own self-descriptive tags, or language, that suits their application.

Here are 5,763 public repositories matching this topic...

sheetjs
mooninite
mooninite commented Sep 2, 2019

Bug report

Describe the bug

Here is a clear and concise description of what the problem is:

xbmc/interfaces/python/PythonInvoker.cpp

There are a three references in the file above to the private interfaces of PyInterpreterState.

Example:

s = state->interp->tstate_head;

Python 3.8 has finally removed the public interfaces to PyInterpreterState. The C documentation has al

nokogiri
flavorjones
flavorjones commented Feb 16, 2020

We're already using yard to generate the docs at https://nokogiri.org/rdoc/index.html, but we're not taking advantage of some of yard's features (like the ability to embed mixin methods, e.g., Searchable in Node and NodeSet), and we're certainly not using yard syntax (e.g., all the call-seq annotations that we currently use are ignored).

So I'm thinking it would be best to convert the

GwilymTurner
GwilymTurner commented Feb 12, 2020

I was trying to use REST Assured for the first and was going through the documentation to help me but was getting nowhere. I had put in the correct Maven repository and have copied the relevant classes to be imported but was getting nowhere.
After fiddling around for ages, I had discovered that the classes had to be statically imported but since I had directly copied the classes from the wiki, I

math10
math10 commented Oct 13, 2016

XMLElement.js:4 Uncaught TypeError: Cannot read property 'prototype' of undefined

"dependencies": {
    "@angular/common": "^2.1.0",
    "@angular/compiler": "^2.1.0",
    "@angular/compiler-cli": "^2.1.0",
    "@angular/core": "^2.1.0",
    "@angular/forms": "^2.1.0",
    "@angular/http": "^2.1.0",
    "@angular/platform-browser": "^2.1.0",
    "@angular/platform-browser-dynamic": "^2.1.0",
michael
michael commented Feb 13, 2018

For instance in some places we use el.nodeType which in our abstraction returns a string:

...
  getNodeType() {
    switch(this.el.nodeType) {
      case window.Node.TEXT_NODE:
        return "text"
      case window.Node.ELEMENT_NODE:
        return 'element'
      case window.Node.DOCUMENT_NODE:
        return 'document'
      case window.Node.COMMENT_NODE:
        return '
lsp-mode
yyoncho
yyoncho commented Feb 6, 2020

Vscode handles > in tags by calling html/tag and eventually closing the tag.

Example request:

[Trace - 7:58:44 AM] Sending request 'html/tag - (138)'. Params: { "textDocument": { "uri": "file:///home/kyoncho/Sources/lsp-docker/demo-projects/Scala/hello/src/test/scala/example/foo.html" }, "position": { "line": 0, "character": 6 } }

[Trace - 7:58:44 AM] Received response 'html/tag 
Bu11etmagnet
Bu11etmagnet commented Apr 6, 2020

After creating a pugi::xml_document and calling load_file with a file containing

<?xml version="1.0"?>
<m>
	<v>42</v>
</m>
<d>
        <i>eek</i>
</d>

a successful xml_parse_result is returned. Both doc.child("m").child("v") and doc.child("d").child("i") return a valid pugi::xml_node.

The input is not well-formed, because

There is a single "root" element that

spider-mane
spider-mane commented Feb 21, 2020

In twig, whenever a comment starts the first non-empty line following an opening tag, the attributes are forced onto a new line and indented.

<div class="container text-white-90">

  {# brand/ logo #}

becomes

<div 
  class="container text-white-90">

  {# brand/ logo #}

I'm using the Twig Language VS Code extension, but this also happens on the website

Created by World Wide Web Consortium

Released 1996

Website
www.w3.org/TR/xml
Wikipedia
Wikipedia

Related Topics

css html rss web xhtml
You can’t perform that action at this time.