Questions tagged [article]

An article is a particular section or item of a series in a written document

Use this tag to ask questions about features in a software that helps in writing/editing articles.

377 questions
1
vote
1 answer

How to prevent duplicate blog post dates in shopify

I have a blog with posts on a shopify website. I want to get all the publication dates of posts, and I do it like this: {% for article in blog.articles %} {{ article.created_at }} {% endfor %} And this is the output…
s.kuznetsov
  • 14,870
  • 3
  • 10
  • 25
1
vote
1 answer

Markup Language vs Programming Language

I was reading a article about it, and there was a line in that article which confused me a bit: ".....the markup language is used to present information whereas programming language is used to give instructions to a computer to perform a particular…
001Wolf
  • 26
  • 1
  • 6
1
vote
1 answer

Article vs. Section. Which one should be used in this case?

Hi im just trynna figure out whether or not i should use article or section. Just to give a bit of context, this part of my code comes from the index file (it is the home page of my website). I am coding a website about HTML for beginners . I used…
1
vote
0 answers

reading and importing data from external wikis

I need to write a Mediawiki extension that it can read other wikis articles (by user selection) and user can select some articles and then import them to the user's Mediawiki. How should i write it?
sam1364tt
  • 153
  • 1
  • 2
  • 13
1
vote
1 answer

how to display single data with database-relationship or eloquent in laravel in my component vue

i am getting a problem of viewing my SINGLE ARTICLE with database-relationship using Vue js and laravel api. please help me. this is my code of getting single article export default { data(){ return{ article: [], …
Office use
  • 13
  • 3
1
vote
2 answers

Symfony get image passed through form inside article

So I'm working as a frontend dev and I was told to make images inside article responsive. Our backend runs on symfony 2.X and sadly, I don't know much about it... The problem is the way, how the article is being rendered. It looks like this: {{…
TweeZed
  • 55
  • 1
  • 8
1
vote
1 answer

Showing one article element and hiding others at the same time using JQuery

I have three internal links on HTML page and when I click them they show an article element for a while, which has some text. Each link has a separate article element (and other article elements should be hidden, when that one is shown). The chosen…
1
vote
4 answers

An article about Google Map API V3 show a live demo that does not work. Where is the bug?

I was reading the nice article called Using PHP/MySQL with Google Maps At the end of the article they provide a link to view a live demo but actually it does not work. It only displays the map but not the markers. Does any one have an explanation…
Fred FLECHE
  • 432
  • 1
  • 5
  • 11
1
vote
1 answer

the purpose of this code is to add an article at the end of the page, but the broblem is that appear then it desappear

the purpose of this code is to add an article at the end of the page, but the broblem is that appear then it desappear.please help me to figur it out :) const button = document.getElementById("buttad"); function addNewArticle()…
1
vote
0 answers

Is it possible to start new inventory by one product category in openerp v8 like odoo 10

I need to find some ways to create a new inventory by one product category It's easy to do it in odoo v10.0 but in version 8.0 it's quite impossible ther's some images shows the user interface of both in odoo 8 and odoo 10 Can you help to find…
Sylver
  • 39
  • 5
1
vote
2 answers

Auto-categorize Authors' articles in Wordpress

A WP user with the role "Author" can post articles. On the blog in question I have the requirement, that these users' articles have to be live immediately but not publicly visible (i.e., for anonymous visitors or Subscribers). We use WP 3.0.5. We…
Boldewyn
  • 81,211
  • 44
  • 156
  • 212
1
vote
3 answers

Question on "Tail Call Optimization" Article

I have a question regarding this article. Between this code function odds(n, p) { if(n == 0) { return 1 } else { return (n / p) * odds(n - 1, p - 1) } } and this code (function(){ var odds1 = function(n, p, acc) { if(n == 0) { …
JustcallmeDrago
  • 1,885
  • 1
  • 13
  • 23
1
vote
1 answer

Middleman single news post add active class to navigation

I am working with Middleman and I have been able to add a active class to the menu navigation depending if your on the page or not. So this works fine but not I have a News link in the navigation which takes you to a news overview page (this turns…
rcho
  • 31
  • 2
1
vote
0 answers

Get all articles in category from Wikipedia

I'm trying to get a .csv of all living people listed on wikipedia, preferably with biographic columns for birth date, nationality, etc. I've tried the Special Export page to export the records as an .xml but it seems there are too many records for a…
user3053470
  • 241
  • 4
  • 9
1
vote
0 answers

Jquery, delete an article and pull in the first one from next page

Possible Duplicate: Jquery, delete an article and pull in the first one from next page Hi i'm trying to build a blog with a pagination system (ex. 5 articles per page). Everything is fine with the pagination itself but next to each article i…
luca
  • 36,606
  • 27
  • 86
  • 125